blob: ec52746f4b2f78c2e9910c06c5a234728d25d511 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
#submitter: perlawk
pkgname=chicken-coops
_pkgname=coops
pkgver=1.93
pkgrel=1
pkgdesc="An featureful object system"
arch=('i686' 'x86_64')
url="http://chicken.wiki.br/eggref/4/coops"
license=('BSD')
depends=('chicken>=4.5.0' 'chicken-matchable' 'chicken-record-variants')
install=
build() {
cd "$srcdir"
if [ ! -e "$_pkgname" ]; then
chicken-install -r "$_pkgname:$pkgver"
fi
}
package() {
cd "$srcdir/$_pkgname"
chicken-install -p "$pkgdir/usr"
}
|