summaryrefslogtreecommitdiff
path: root/manualPorts/barcode/Pkgfile
blob: faf8d7093135b21505b7020a54ac50d08eecac01 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
# Description: Convert text strings to printed bars.
# URL: https://directory.fsf.org/wiki/Barcode
# Maintainer: Erich Eckner, crux at eckner dot net
# Depends on:

name=barcode
version=0.99
release=1
source=("https://ftp.gnu.org/gnu/${name}/${name}-${version}.tar.xz")

build() {

    cd ${name}-${version}
    ./configure --prefix=/usr
    make
    make check
    make DESTDIR=$PKG install

}