blob: f1ef76668a811b6d02d32cb07945070942c69e89 (
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
|
# Maintainer: jsteel <jsteel@aur.archlinux.org>
# Contributor: Peter Simons <simons@cryp.to>
pkgname=shhmsg
pkgver=1.4.1
pkgrel=1
pkgdesc="Library for displaying messages"
arch=('i686' 'x86_64')
url="http://shh.thathost.com/pub-unix"
license=('GPL')
source=($url/files/$pkgname-$pkgver.tar.gz)
md5sums=('de300150851786eb19cb9b9ad234d7a2')
build() {
cd "$srcdir"/$pkgname-$pkgver
make OPTIM="$CFLAGS" dep
make OPTIM="$CFLAGS"
}
package() {
cd "$srcdir"/$pkgname-$pkgver
make OPTIM="$CFLAGS" INSTBASEDIR="$pkgdir"/usr/ install
}
|