mirror of
https://github.com/archlinux/aur.git
synced 2026-03-05 14:02:39 +01:00
Initial PKGBUILD status as of 28.11.2014
This commit is contained in:
commit
6879bd91a8
2 changed files with 40 additions and 0 deletions
15
.SRCINFO
Normal file
15
.SRCINFO
Normal file
|
|
@ -0,0 +1,15 @@
|
|||
pkgbase = polygen
|
||||
pkgdesc = A program for generating random sentences according to a grammar definition
|
||||
pkgver = 1.0.6
|
||||
pkgrel = 1
|
||||
url = http://polygen.org/
|
||||
arch = i686
|
||||
arch = x86_64
|
||||
license = GPL
|
||||
makedepends = ocaml
|
||||
depends = polygen-data
|
||||
source = http://polygen.org/dist/polygen-1.0.6-20040628-src.zip
|
||||
sha256sums = 703c483820b33a5d695e884e58e2723a660930180fde845f38d6135d247c64a5
|
||||
|
||||
pkgname = polygen
|
||||
|
||||
25
PKGBUILD
Normal file
25
PKGBUILD
Normal file
|
|
@ -0,0 +1,25 @@
|
|||
# Maintainer: Jaroslav Lichtblau <dragonlord@aur.archlinux.org>
|
||||
|
||||
pkgname=polygen
|
||||
pkgver=1.0.6
|
||||
pkgrel=1
|
||||
pkgdesc="A program for generating random sentences according to a grammar definition"
|
||||
arch=('i686' 'x86_64')
|
||||
url="http://polygen.org/"
|
||||
license=('GPL')
|
||||
depends=('polygen-data')
|
||||
makedepends=('ocaml')
|
||||
source=(http://polygen.org/dist/$pkgname-$pkgver-20040628-src.zip)
|
||||
sha256sums=('703c483820b33a5d695e884e58e2723a660930180fde845f38d6135d247c64a5')
|
||||
|
||||
build() {
|
||||
cd ${srcdir}/$pkgname-$pkgver/src
|
||||
|
||||
make
|
||||
}
|
||||
|
||||
package() {
|
||||
cd ${srcdir}/$pkgname-$pkgver/src
|
||||
|
||||
install -D -m755 $pkgname ${pkgdir}/usr/bin/$pkgname
|
||||
}
|
||||
Loading…
Add table
Reference in a new issue