summaryrefslogtreecommitdiff
path: root/repo/libexif/libexif.xibuild
blob: 129c73a9ba98ba2571deffc42ccf2f96f3b54c45 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
#!/bin/sh

NAME="libexif"
DESC="library to parse an EXIF file and read the data from those tags"

MAKEDEPS="make "
DEPS="musl "

PKG_VER=0.6.24
SOURCE="https://github.com/libexif/libexif/releases/download/v$PKG_VER/libexif-$PKG_VER.tar.bz2"

build () {
    ./configure \
        --prefix=/usr \
        --bindir=/usr/bin \
        --sysconfdir=/etc \
        --disable-static
    make
}

package () {
    make DESTDIR=$PKG_DEST install
}