blob: 706867b7c57503ddbf7bf816ddde88e215540991 (
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
|
# Maintainer: Andreas Baumann <mail at andreasbaumann dot com>
# Contributor: Jakob Gahde <j5lx@fmail.co.uk>
# Contributor: eric <eric@archlinux.org>
# Contributor: Manolis Tzanidakis
pkgname=ucspi-unix
pkgver=1.0
pkgrel=2
pkgdesc="UNIX-domain socket client-server command-line tools"
arch=('i686' 'x86_64')
url="http://untroubled.org/ucspi-unix"
depends=('bash')
source=("http://untroubled.org/ucspi-unix/archive/${pkgname}-${pkgver}.tar.gz")
license=('GPL')
md5sums=('071271a4c8f571bdd8255240cf252884')
build() {
cd "${srcdir}/${pkgname}-${pkgver}"
sed -i "1s/\$/ $(echo -n $CFLAGS | sed 's/[\/&]/\\&/g')/" conf-cc
sed -i "1s/\$/ $(echo -n $LDFLAGS | sed 's/[\/&]/\\&/g')/" conf-ld
make
}
package() {
cd "${srcdir}/${pkgname}-${pkgver}"
make install prefix="${pkgdir}/usr" mandir="share/man"
}
|