23 lines
526 B
Plaintext
23 lines
526 B
Plaintext
# 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
|
||
}
|