Initial PKGBUILD status as of 28.11.2014

This commit is contained in:
Jaroslav Lichtblau 2014-11-28 20:17:14 +01:00
commit b362e612d9
3 changed files with 54 additions and 0 deletions

14
.AURINFO Normal file
View file

@ -0,0 +1,14 @@
pkgbase = pigterm
pkgdesc = Remote assistant for Linux console
pkgver = 1.0.1
pkgrel = 1
url = http://pigterm.sourceforge.net/
arch = i686
arch = x86_64
license = GPL3
depends = qt4
depends = qca-ossl
source = http://sourceforge.net/projects/pigterm/files/pigterm_1.0.1.tar.gz
pkgname = pigterm

15
.SRCINFO Normal file
View file

@ -0,0 +1,15 @@
pkgbase = pigterm
pkgdesc = Remote assistant for Linux console
pkgver = 1.0.1
pkgrel = 1
url = http://pigterm.sourceforge.net/
arch = i686
arch = x86_64
license = GPL3
depends = qt4
depends = qca-ossl
source = http://sourceforge.net/projects/pigterm/files/pigterm_1.0.1.tar.gz
sha256sums = 1ac1809264cb7efaf8e47c993d6d879a347388a288c6599d1aa35d24fef1084f
pkgname = pigterm

25
PKGBUILD Normal file
View file

@ -0,0 +1,25 @@
# Maintainer: Jaroslav Lichtblau <dragonlord@aur.archlinux.org>
pkgname=pigterm
pkgver=1.0.1
pkgrel=1
pkgdesc="Remote assistant for Linux console"
arch=('i686' 'x86_64')
url="http://pigterm.sourceforge.net/"
license=('GPL3')
depends=('qt4' 'qca-ossl')
source=(http://sourceforge.net/projects/$pkgname/files/${pkgname}_${pkgver}.tar.gz)
sha256sums=('1ac1809264cb7efaf8e47c993d6d879a347388a288c6599d1aa35d24fef1084f')
build() {
cd "${srcdir}/$pkgname"
qmake-qt4
make
}
package() {
cd "${srcdir}/$pkgname"
install -D -m755 $pkgname ${pkgdir}/usr/bin/$pkgname
}