blob: 64810db4bfffef68b196f77d9aa8aa96bca3429f (
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
58
59
60
61
62
|
## Maintainer : shahid <helllamer@gmail.com>
## Long PKGBUILD description, todo, wiki:
## * https://bitbucket.org/helllamer/archlinux-pkgbuild/wiki/pkgbuild/bitcoin
## Wanna take part on development my PKGBUILDs? Feel welcome on my repo:
## * https://bitbucket.org/helllamer/archlinux-pkgbuild/
name=bitcoin
pkgname=$name
pkgver=0.5.2
pkgrel=1
pkgdesc="Bitcoin is a peer-to-peer network based digital currency."
arch=('i686' 'x86_64')
url="http://www.bitcoin.org/"
depends=('qt>=4.6' 'libpng>=1.4' 'expat' 'gcc-libs' 'boost-libs>=1.46' 'miniupnpc>=1.6' 'openssl')
makedepends=('boost' 'gcc' 'make' 'automoc4')
conflicts=('bitcoin-bin' 'bitcoin-git' 'bitcoin-daemon')
license=('MIT')
source=("http://downloads.sourceforge.net/sourceforge/${pkgname}/${pkgname}-${pkgver}-linux.tar.gz"
"${pkgname}.desktop")
md5sums=('6d40f645ddc042de26d64e83656f38e0'
'77139ce8a40f46bd7d7ad0a743672113')
s1=$srcdir/${pkgname}-${pkgver}-linux
src_qt=$s1/src
src_d=$s1/src/src/
makefile_unix=makefile.unix
build() {
cd $src_d
msg "Patching $makefile_unix..."
sed -i $makefile_unix \
-e 's/\(-DNOPCH\)/\1 -DBOOST_FILESYSTEM_VERSION=2/' \
-e 's/-Bstatic/--as-needed ${LDFLAGS}/g' \
-e 's/\(USE_UPNP:=\)0/\11/' \
-e 's/$(DEBUGFLAGS)//g' \
-e 's/CXXFLAGS/CPPFLAGS/g' \
-e 's/-O[0-3]/${CXXFLAGS}/g'
# make bitcoind
make $MAKEFLAGS -f $makefile_unix bitcoind
# and make qt gui
cd $src_qt
qmake
make $MAKEFLAGS
}
package() {
mkdir -p $pkgdir/usr/bin
mkdir -p $pkgdir/usr/share/pixmaps
mkdir -p $pkgdir/usr/share/applications
# get compiled binaries
install -D -m755 $src_qt/bitcoin-qt $pkgdir/usr/bin/
install -D -m755 $src_d/bitcoind $pkgdir/usr/bin/
# add icon and .desktop file to pkg
install -D -m644 $src_qt/src/qt/res/icons/bitcoin.png $pkgdir/usr/share/pixmaps/
install -D -m644 $srcdir/$name.desktop $pkgdir/usr/share/applications/
}
|