initial import
This commit is contained in:
31
dejagnu/PKGBUILD
Normal file
31
dejagnu/PKGBUILD
Normal file
@@ -0,0 +1,31 @@
|
||||
# Maintainer: Jesus E. <heckyel@riseup.net>
|
||||
|
||||
pkgname=dejagnu
|
||||
pkgver=1.6.2
|
||||
pkgrel=1
|
||||
pkgdesc='Framework for testing other programs'
|
||||
arch=(any)
|
||||
url='https://www.gnu.org/software/dejagnu/'
|
||||
license=(GPL-3)
|
||||
depends=(sh expect)
|
||||
source=(https://ftp.gnu.org/gnu/dejagnu/${pkgname}-${pkgver}.tar.gz{,.sig})
|
||||
sha512sums=('ae527ce245871d49b84773d0d14b1ea6b2316c88097eeb84091a3aa885ff007eeaa1cd9c5b002d94a956d218451079b5e170561ffa43a291d9d82283aa834042'
|
||||
'SKIP')
|
||||
validpgpkeys=('152F3EADD335FF629611128567DADC3E3F743649') # Ben Elliston
|
||||
|
||||
build() {
|
||||
cd $pkgname-$pkgver
|
||||
./configure --prefix=/usr
|
||||
make
|
||||
}
|
||||
|
||||
check() {
|
||||
cd $pkgname-$pkgver
|
||||
make check || true
|
||||
}
|
||||
|
||||
package() {
|
||||
cd $pkgname-$pkgver
|
||||
make DESTDIR="$pkgdir" install
|
||||
install -Dm644 COPYING $pkgdir/usr/share/licenses/$pkgname/COPYING
|
||||
}
|
||||
Reference in New Issue
Block a user