blob: b93d63e8aac433feb8fd06bd521b21828c8b2c21 (
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
|
# Maintainer: MasterDocNoble <MasterDocNoble@protonmail.com>
pkgname=basez
pkgver=1.6.2
pkgrel=2
pkgdesc='Encodes/decodes base16, base32, base32hex, base64, base64url, base64mime, base64pem PEM, base32plain, base64plain. base16 and base32 are NOT included in this package since they would conflict with the one already in coreutils.'
arch=('x86_64')
url='http://www.quarkline.net/basez/'
depends=('gcc-libs')
license=('GPL')
source=("http://www.quarkline.net/basez/download/${pkgname}-${pkgver}.tar.gz")
md5sums=('b026890b9565bd2cba93afdbcd3213aa')
build() {
cd "${srcdir}/${pkgname}-${pkgver}"
./configure --prefix=/usr --disable-base32-command --disable-base64-command
make
}
package() {
cd "${srcdir}/${pkgname}-${pkgver}"
make DESTDIR="${pkgdir}" install
}
|