mirror of
https://github.com/arcan1s/pkgbuild.git
synced 2025-07-23 18:09:57 +00:00
Edited PKGBUILDs
This commit is contained in:
@ -4,19 +4,20 @@
|
||||
pkgname=food_gui
|
||||
pkgver=1.2.0
|
||||
pkgrel=2
|
||||
pkgdesc=" Food_gui is a simple program-calculator written on Python2.7 with GUI interface (Qt4) "
|
||||
url="https://github.com/arcan1s/food_gui"
|
||||
license=("GPL")
|
||||
pkgdesc="A simple program-calculator written on Python2.7 with GUI interface (Qt4)"
|
||||
arch=('i686' 'x86_64')
|
||||
url="https://github.com/arcan1s/food_gui"
|
||||
license=('GPL')
|
||||
depends=('python2-pyqt4')
|
||||
source=(https://github.com/arcan1s/food_gui/raw/master/linux/$pkgname-$pkgver.tar.xz)
|
||||
source=(https://github.com/arcan1s/food_gui/raw/master/linux/${pkgname}-${pkgver}.tar.xz)
|
||||
md5sums=('a206c16e88313b29a02f6b400ce76498')
|
||||
|
||||
package() {
|
||||
install -D -m755 $srcdir/usr/bin/food_gui $pkgdir/usr/bin/food_gui
|
||||
|
||||
install -D -m644 $srcdir/usr/lib/food_gui/db_eng.dat $pkgdir/usr/lib/food_gui/db_eng.dat
|
||||
install -D -m644 $srcdir/usr/lib/food_gui/db_rus.dat $pkgdir/usr/lib/food_gui/db_rus.dat
|
||||
package()
|
||||
{
|
||||
install -D -m755 ${srcdir}/usr/bin/food_gui ${pkgdir}/usr/bin/food_gui || return 1
|
||||
|
||||
install -D -m644 $srcdir/usr/share/man/man1/food_gui.1 $pkgdir/usr/share/man/man1/food_gui.1
|
||||
install -D -m644 ${srcdir}/usr/lib/food_gui/db_eng.dat ${pkgdir}/usr/lib/food_gui/db_eng.dat || return 1
|
||||
install -D -m644 ${srcdir}/usr/lib/food_gui/db_rus.dat ${pkgdir}/usr/lib/food_gui/db_rus.dat || return 1
|
||||
|
||||
install -D -m644 ${srcdir}/usr/share/man/man1/food_gui.1 ${pkgdir}/usr/share/man/man1/food_gui.1 || return 1
|
||||
}
|
||||
|
Reference in New Issue
Block a user