Initial PKGBUILD status as of 28.11.2014

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

13
.SRCINFO Normal file
View file

@ -0,0 +1,13 @@
pkgbase = aft
pkgdesc = Almost Free Text: a document preparation system, mostly free from intrusive markup
pkgver = 5.098
pkgrel = 1
url = http://www.maplefish.com/todd/aft.html
arch = any
license = custom: "The Clarified Artistic License"
depends = perl
source = http://www.maplefish.com/todd/aft-5.098.tar.gz
md5sums = ef6178d35978625a5cd00663740d63cc
pkgname = aft

26
PKGBUILD Normal file
View file

@ -0,0 +1,26 @@
# Maintainer: Jaroslav Lichtblau <dragonlord@aur.archlinux.org>
# Contributor: Jeremy Cowgar <jeremy@cowgar.com>
pkgname=aft
pkgver=5.098
pkgrel=1
pkgdesc="Almost Free Text: a document preparation system, mostly free from intrusive markup"
arch=('any')
url="http://www.maplefish.com/todd/aft.html"
license='custom: "The Clarified Artistic License"'
depends=('perl')
source=(http://www.maplefish.com/todd/$pkgname-$pkgver.tar.gz)
md5sums=('ef6178d35978625a5cd00663740d63cc')
build() {
cd ${srcdir}/$pkgname-$pkgver
./configure --prefix=/usr --sysconfdir=/etc
make
}
package() {
cd ${srcdir}/$pkgname-$pkgver
make DESTDIR=${pkgdir} install
#License
install -D -m644 COPYING ${pkgdir}/usr/share/licenses/$pkgname/COPYING || return 1
}