summaryrefslogtreecommitdiff
path: root/libs/libexif/MAKEPKG
blob: 5a7aa18c4e50d699c32db75ef05f6d582b3868d6 (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
28
29
30
31
#!/bin/mkpkg
# description: Library for parsing, editing, and saving EXIF data
# url: https://github.com/libexif/libexif

name=libexif
version=0.6.26
release=1
source=(https://github.com/libexif/libexif/releases/download/v${version}/${name}-${version}.tar.bz2)

sha256sums=(
    "0830ed253fceeb60444fb309598bc8a9491d3007dc054aad3a50a347c5597c57"
)

build() {
    cd ${name}-${version}

    ./configure \
        --prefix=/usr \
        --disable-static \
        --disable-nls

    make
    make DESTDIR=$PKG install
}

signify() {
    untrusted comment: public key
    RWTZ9IduCSQ/mL8337TEUinPwT92xFEUpD92hkS7IxcOnzTt9QdpohT3
}

# vim: filetype=sh