diff options
Diffstat (limited to 'extra/gestpkg-1.2/Pkgfile')
-rwxr-xr-x | extra/gestpkg-1.2/Pkgfile | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/extra/gestpkg-1.2/Pkgfile b/extra/gestpkg-1.2/Pkgfile new file mode 100755 index 000000000..ec324b943 --- /dev/null +++ b/extra/gestpkg-1.2/Pkgfile @@ -0,0 +1,27 @@ +# Description: Gestionnaire de paquets graphique +# URL: http://www.nutyx.org +# Maintainer: NuTyX core team +# Packager: ferarduansednan at laposte dot net +# Depends on: qt, cmake, ktsuss + +name=gestpkg-1.2 +version=1.2 +release=1 +source=(http://www.fds-creation.net/assets/files/sources/gestpkg-$version.7z gestpkg.desktop) + + +build() { + 7z x gestpkg-$version.7z + cd $name-$version + + cmake . + make + make DESTDIR=$PKG install + + mkdir -p $PKG/usr/share/applications + install -m 644 ../${name}.desktop $PKG/usr/share/applications/ + + mkdir -p $PKG/usr/share/icons/hicolor/32x32/apps/ + install -m 644 ./${name}.png $PKG/usr/share/icons/hicolor/32x32/apps/ + +} |