blob: af888e490e84db509ae63ed00c824d7ec9ee9810 (
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
|
pkgname=bincalc
pkgver=5
pkgrel=1
pkgdesc='Command line calculator for bit fiddling (showing bits, showing as floats, etc.)'
url='https://github.com/sandsmark/bincalc'
arch=('x86_64' 'i686')
license=('GPL2')
makedepends=(gcc)
depends=(gmp)
source=("https://github.com/sandsmark/bincalc/archive/${pkgver}.tar.gz")
sha256sums=('dc3a11c19461d8313067dbbcca593cb85a92004500549a36ee3e4788b0d511b6')
build() {
cd bincalc-${pkgver}
# gnu make and/or gcc are broken
LDFLAGS+=,--no-as-needed
make
}
package() {
cd bincalc-${pkgver}
install -D -m755 bincalc -t "${pkgdir}/usr/bin"
}
|