This commit is contained in:
milisbir 2018-03-06 09:18:15 +02:00
parent 719cec87af
commit 0a8eba9991
1 changed files with 22 additions and 0 deletions

View File

@ -0,0 +1,22 @@
# Tanım: InstallShield yükleyicilerinden CAB dosyalarını ayıklar
# URL: https://github.com/twogood/unshield
# Paketçi: Cihan_Alkan
# Gerekler: cmake
# Grup: sistem
isim=unshield
surum=1.4.2
devir=1
kaynak=(https://github.com/twogood/unshield/archive/$surum.tar.gz::$isim-$surum.tar.gz)
derle() {
cd "$SRC"/${isim}-${surum}
cmake \
-DCMAKE_INSTALL_PREFIX=/usr \
-DCMAKE_INSTALL_LIBDIR=lib \
.
make
make DESTDIR="$PKG" install
install -D -m644 LICENSE "$PKG"/usr/share/licenses/unshield/LICENSE
}