mirror of
https://github.com/archlinux/aur.git
synced 2026-03-05 12:12:40 +01:00
Initial PKGBUILD status as of 28.11.2014
This commit is contained in:
commit
b362e612d9
3 changed files with 54 additions and 0 deletions
14
.AURINFO
Normal file
14
.AURINFO
Normal 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
15
.SRCINFO
Normal 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
25
PKGBUILD
Normal 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
|
||||
}
|
||||
Loading…
Add table
Reference in a new issue