blob: 4e462b8c11147e315081fe3359549c3140fa6364 (
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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
|
# Maintainer: Jan Peter Koenig <public@janpeterkoenig.com>
# Contributor: John Lane <archlinux at jelmail dot com>
# Contributor: Nathan Owe <ndowens.aur at gmail dot com>
pkgname=dcc
pkgver=2.3.167
pkgrel=1
pkgdesc="Distributed Checksum Clearinghouse spam tool"
url="http://www.rhyolite.com/anti-spam/dcc"
arch=('x86_64')
license=('custom')
depends=('sh')
source=(
"https://www.dcc-servers.net/dcc/source/old/${pkgname}-${pkgver}.tar.Z"
)
sha256sums=(
'e5da87aca80ddc8bc52fa93869576a2afaf0c1e563e3f97dee6e6531690fbad5'
)
_dstdir="/var/lib/${pkgname}"
build() {
cd "${srcdir}/${pkgname}-${pkgver}"
# Following fix is no longer needed
# CPPFLAGS="$CPPFLAGS -O2" # https://bbs.archlinux.org/viewtopic.php?id=182812
./configure \
--with-installroot="${pkgdir}" \
--mandir="/usr/share/man" \
--homedir="${_dstdir}" \
--bindir="/usr/bin" \
--libexecdir="/usr/lib/${pkgname}"
make
}
package() {
cd "${srcdir}/${pkgname}-${pkgver}"
# AUR comment zmeYski 2014-10-14 17:57
MAKEFLAGS="$MAKEFLAGS -j1"
make DESTDIR="${pkgdir}/" install
# License
install -Dm644 LICENSE "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
# Fix file and dir permissions
chown -R root:root "${pkgdir}/"
# Fix libraries not being stripped
find "${pkgdir}/" -exec file {} \; | grep -i elf|grep "not stripped"|awk -F: '{ print $1 }'|xargs strip
}
|