blob: 87df7932cc7c189e2db665ca1e47b734fa9a2a18 (
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="libmypaint"
DESC="library for making brushstrokes"
MAKEDEPS="make "
DEPS="glib json-c intltool "
PKG_VER=1.6.1
SOURCE="https://github.com/mypaint/libmypaint/releases/download/v$PKG_VER/libmypaint-$PKG_VER.tar.xz"
build () {
    ./configure \
        --prefix=/usr \
        --bindir=/usr/bin \
        --sysconfdir=/etc \
        --disable-static
    make
}
package () {
    make DESTDIR=$PKG_DEST install
}
 |