mirror of
https://github.com/chocolate-doom/chocpkg.git
synced 2024-12-03 09:32:14 +00:00
74a03eae81
This is a tricky package to support, since the tar file is improperly structured and it is not an autotools package. Refactor slightly and add IS_TAR_BOMB option for this kind of use case.
11 lines
182 B
Bash
11 lines
182 B
Bash
PACKAGE_URL=https://www.libsdl.org/extras/win32/common/directx-devel.tar.gz
|
|
IS_TAR_BOMB=true
|
|
|
|
do_build() {
|
|
true
|
|
}
|
|
|
|
do_install() {
|
|
cp -R include lib "$PACKAGE_INSTALL_DIR"
|
|
}
|
|
|