blob: ead717f764bca6576a463586de4e767bb104d7be (
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
|
#!/bin/sh
MAKEDEPS="make "
DEPS="musl"
PKG_VER=1.5
SOURCE=https://www.fourmilab.ch/webtools/base64/base64-$PKG_VER.tar.gz
DESC="A utility to encode and decode files in base64"
build () {
./configure --prefix=/usr --mandir=/usr/share/man
make
}
check () {
make check
}
package () {
install -d $PKG_DEST/usr/bin
install -d $PKG_DEST/usr/share/man/man1
make DESTDIR=$PKG_DEST install
}
|