mirror of
https://github.com/arcan1s/pkgbuild.git
synced 2025-04-26 16:27:19 +00:00
23 lines
861 B
Bash
23 lines
861 B
Bash
# Author: Evgeniy "arcanis" Alexeev <esalexeev@gmail.com>
|
|
# Maintainer: Evgeniy "arcanis" Alexeev <esalexeev@gmail.com>
|
|
|
|
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")
|
|
arch=('i686' 'x86_64')
|
|
depends=('python2-pyqt4')
|
|
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
|
|
|
|
install -D -m644 $srcdir/usr/share/man/man1/food_gui.1 $pkgdir/usr/share/man/man1/food_gui.1
|
|
}
|