blob: 914062c87aacbe4a01c7d8d53d025ec7c4afe236 (
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
25
26
27
28
29
30
31
32
33
34
35
36
|
# $Id: PKGBUILD 83917 2013-02-06 14:41:18Z kkeen $
# Maintainer: Kyle Keen <keenerd@gmail.com>
# Contributor: catwell <catwell@archlinux.us>
pkgname=lout
pkgver=3.39
pkgrel=2
pkgdesc="A lightweight document formatting system."
arch=('i686' 'x86_64')
url="http://lout.wiki.sourceforge.net/"
license=('GPL')
depends=('glibc')
install=lout.install
source=(http://mirrors.ctan.org/support/$pkgname/$pkgname-$pkgver.tar.gz
makefile.arch
lout.install
http://pkgs.fedoraproject.org/repo/pkgs/lout/slides.pdf/6822c33e49a1dca0b090f297d404d7fa/slides.pdf)
md5sums=('151e1fba676c7052936ccc1bcd9663a9'
'088a29ca16477a9a30da9fafc9391de8'
'597cd52eb87ef6253cf769bed4db3952'
'6822c33e49a1dca0b090f297d404d7fa')
build() {
cd "$srcdir/$pkgname-$pkgver"
cp ../makefile.arch .
make -f makefile.arch
}
package() {
cd "$srcdir/$pkgname-$pkgver"
make -f makefile.arch PKGDIR="$pkgdir" install
chmod 0775 "$pkgdir/usr/lib/lout/data/"
chgrp users "$pkgdir/usr/lib/lout/data/"
install -Dm644 "$srcdir/slides.pdf" "$pkgdir/usr/share/doc/$pkgname/introduction.pdf"
}
|