libmypaint: initial import, thx teatime
This commit is contained in:
parent
0c1d0c8a9b
commit
1ff4a3e095
35
libmypaint/.footprint
Normal file
35
libmypaint/.footprint
Normal file
@ -0,0 +1,35 @@
|
||||
drwxr-xr-x root/root usr/
|
||||
drwxr-xr-x root/root usr/include/
|
||||
drwxr-xr-x root/root usr/include/libmypaint-gegl/
|
||||
-rw-r--r-- root/root usr/include/libmypaint-gegl/mypaint-gegl-glib.h
|
||||
-rw-r--r-- root/root usr/include/libmypaint-gegl/mypaint-gegl-surface.h
|
||||
drwxr-xr-x root/root usr/include/libmypaint/
|
||||
-rw-r--r-- root/root usr/include/libmypaint/mypaint-brush-settings-gen.h
|
||||
-rw-r--r-- root/root usr/include/libmypaint/mypaint-brush-settings.h
|
||||
-rw-r--r-- root/root usr/include/libmypaint/mypaint-brush.h
|
||||
-rw-r--r-- root/root usr/include/libmypaint/mypaint-config.h
|
||||
-rw-r--r-- root/root usr/include/libmypaint/mypaint-fixed-tiled-surface.h
|
||||
-rw-r--r-- root/root usr/include/libmypaint/mypaint-glib-compat.h
|
||||
-rw-r--r-- root/root usr/include/libmypaint/mypaint-mapping.h
|
||||
-rw-r--r-- root/root usr/include/libmypaint/mypaint-rectangle.h
|
||||
-rw-r--r-- root/root usr/include/libmypaint/mypaint-surface.h
|
||||
-rw-r--r-- root/root usr/include/libmypaint/mypaint-tiled-surface.h
|
||||
drwxr-xr-x root/root usr/lib/
|
||||
drwxr-xr-x root/root usr/lib/girepository-1.0/
|
||||
-rw-r--r-- root/root usr/lib/girepository-1.0/MyPaint-1.3.typelib
|
||||
-rw-r--r-- root/root usr/lib/girepository-1.0/MyPaintGegl-1.3.typelib
|
||||
lrwxrwxrwx root/root usr/lib/libmypaint-1.3.so.0 -> libmypaint-1.3.so.0.0.0
|
||||
-rwxr-xr-x root/root usr/lib/libmypaint-1.3.so.0.0.0
|
||||
-rwxr-xr-x root/root usr/lib/libmypaint-gegl.la
|
||||
lrwxrwxrwx root/root usr/lib/libmypaint-gegl.so -> libmypaint-gegl.so.0.0.0
|
||||
lrwxrwxrwx root/root usr/lib/libmypaint-gegl.so.0 -> libmypaint-gegl.so.0.0.0
|
||||
-rwxr-xr-x root/root usr/lib/libmypaint-gegl.so.0.0.0
|
||||
-rwxr-xr-x root/root usr/lib/libmypaint.la
|
||||
lrwxrwxrwx root/root usr/lib/libmypaint.so -> libmypaint-1.3.so.0.0.0
|
||||
drwxr-xr-x root/root usr/lib/pkgconfig/
|
||||
-rw-r--r-- root/root usr/lib/pkgconfig/libmypaint-gegl.pc
|
||||
-rw-r--r-- root/root usr/lib/pkgconfig/libmypaint.pc
|
||||
drwxr-xr-x root/root usr/share/
|
||||
drwxr-xr-x root/root usr/share/gir-1.0/
|
||||
-rw-r--r-- root/root usr/share/gir-1.0/MyPaint-1.3.gir
|
||||
-rw-r--r-- root/root usr/share/gir-1.0/MyPaintGegl-1.3.gir
|
5
libmypaint/.signature
Normal file
5
libmypaint/.signature
Normal file
@ -0,0 +1,5 @@
|
||||
untrusted comment: verify with /etc/ports/opt.pub
|
||||
RWSE3ohX2g5d/Sn5X6Ruk25+SAIPPF+C9+397q1BL4AWc8AjX1KHddebVAvgwZwdFpSMeIf/7lH1nP0PckhxOwmkbDVJAMJQjQg=
|
||||
SHA256 (Pkgfile) = cc4726539f7073458b83317e1a7107dd3b31474dfc9d6bd0ed2214ea18aee116
|
||||
SHA256 (.footprint) = 67f417c12b3aeed314afd80c874577171c722d0c1121c184f8bd06215d153fd0
|
||||
SHA256 (v1.3.0.tar.gz) = 8fbdce62f66a027d8b43fa8b061f0e6ff2a3da63cbe55a82d1642e5e39da0654
|
29
libmypaint/Pkgfile
Normal file
29
libmypaint/Pkgfile
Normal file
@ -0,0 +1,29 @@
|
||||
# Description: libmypaint is a library for making brushstrokes
|
||||
# URL: https://github.com/mypaint/libmypaint
|
||||
# Maintainer: Thomas Penteker, tek at serverop dot de
|
||||
# Depends on: json-c python gegl gobject-introspection
|
||||
|
||||
name=libmypaint
|
||||
version=1.3.0
|
||||
release=1
|
||||
source=(https://github.com/mypaint/$name/archive/v$version.tar.gz)
|
||||
|
||||
build() {
|
||||
cd $name-$version
|
||||
|
||||
sed -i 's|gegl-0.3|gegl-0.4|g' gegl/libmypaint-gegl.pc.in gegl/Makefile.am configure.ac
|
||||
sed -i 's|Gegl-0.3|Gegl-0.4|g' gegl/Makefile.am
|
||||
sed -i 's|po/Makefile\.in|po/Makefile|g' configure.ac
|
||||
echo -e '# INTLTOOL_MAKEFILE\nall:\ninstall:' > po/Makefile.in
|
||||
|
||||
autoreconf -i
|
||||
|
||||
./configure --prefix=/usr \
|
||||
--enable-gegl \
|
||||
--disable-nls
|
||||
|
||||
make
|
||||
make DESTDIR=$PKG install
|
||||
|
||||
rm -rf $PKG/usr/share/locale
|
||||
}
|
Loading…
x
Reference in New Issue
Block a user