diff options
author | Fredrik Rinnestam <fredrik@crux.nu> | 2013-04-05 20:27:22 +0200 |
---|---|---|
committer | Fredrik Rinnestam <fredrik@crux.nu> | 2013-04-05 20:27:35 +0200 |
commit | 4e7f5b4877f15af9eaa1a0655ad6ee2e6908e948 (patch) | |
tree | 1999e73658f9918b6545bd9143ca01dc6ef88274 | |
parent | 000422f71508b228ddd72db0a49373399ec41eb0 (diff) | |
download | opt-4e7f5b4877f15af9eaa1a0655ad6ee2e6908e948.tar.gz opt-4e7f5b4877f15af9eaa1a0655ad6ee2e6908e948.tar.xz |
glib: include manfiles
-rw-r--r-- | glib/.md5sum | 13 | ||||
-rw-r--r-- | glib/Pkgfile | 24 |
2 files changed, 33 insertions, 4 deletions
diff --git a/glib/.md5sum b/glib/.md5sum index 1253c46f4..134bebdfe 100644 --- a/glib/.md5sum +++ b/glib/.md5sum @@ -1 +1,14 @@ +e233afd43e65b58d14dae4b7bdce82e1 gdbus-codegen.1.gz +05e400d72d203049e526da8a28c9636b gdbus.1.gz +fbe0ab37a20ef702592f4cc2f730b284 gio-querymodules.1.gz 2047dff287473450593edecb18f79c17 glib-2.36.0.tar.xz +69083b866df436e4a872b35692dcedc6 glib-compile-resources.1.gz +4add854bf35ae20b37fa069b19b66640 glib-compile-schemas.1.gz +da0601106831ae93642780a61c67bf1b glib-genmarshal.1.gz +31f0b196bc1b9cee2ff3b6e30e552752 glib-gettextize.1.gz +44670c6ff898c3bc136dfdddaf6517c1 glib-mkenums.1.gz +f013ed22279991f8b532661de735f491 gobject-query.1.gz +c4dc26c21cece93c326e9cf9c3d4d113 gresource.1.gz +e554115967a44f43655375201abf998e gsettings.1.gz +75c0e2d9322e4b03f647ce58c40922f3 gtester-report.1.gz +122fc274a7a77715b7a88c134ad30862 gtester.1.gz diff --git a/glib/Pkgfile b/glib/Pkgfile index 1e9b4a31b..a59ec6549 100644 --- a/glib/Pkgfile +++ b/glib/Pkgfile @@ -5,16 +5,32 @@ name=glib version=2.36.0 -release=1 -source=(http://download.gnome.org/sources/$name/2.36/$name-$version.tar.xz) +release=2 +source=(http://download.gnome.org/sources/$name/2.36/$name-$version.tar.xz \ + http://crux.nu/~rehabdoll/distfiles/glib-man/2.36/glib-gettextize.1.gz \ + http://crux.nu/~rehabdoll/distfiles/glib-man/2.36/glib-genmarshal.1.gz \ + http://crux.nu/~rehabdoll/distfiles/glib-man/2.36/gtester.1.gz \ + http://crux.nu/~rehabdoll/distfiles/glib-man/2.36/gdbus.1.gz \ + http://crux.nu/~rehabdoll/distfiles/glib-man/2.36/gsettings.1.gz \ + http://crux.nu/~rehabdoll/distfiles/glib-man/2.36/gio-querymodules.1.gz \ + http://crux.nu/~rehabdoll/distfiles/glib-man/2.36/gresource.1.gz \ + http://crux.nu/~rehabdoll/distfiles/glib-man/2.36/glib-compile-schemas.1.gz \ + http://crux.nu/~rehabdoll/distfiles/glib-man/2.36/glib-mkenums.1.gz \ + http://crux.nu/~rehabdoll/distfiles/glib-man/2.36/gobject-query.1.gz \ + http://crux.nu/~rehabdoll/distfiles/glib-man/2.36/gdbus-codegen.1.gz \ + http://crux.nu/~rehabdoll/distfiles/glib-man/2.36/gtester-report.1.gz \ + http://crux.nu/~rehabdoll/distfiles/glib-man/2.36/glib-compile-resources.1.gz) build () { cd $name-$version ./configure --prefix=/usr \ - --mandir=/usr/man \ - --with-pcre=system + --disable-man \ + --with-pcre=system make make -j1 DESTDIR=$PKG install rm -rf $PKG/usr/share/{gtk-doc,locale} rm -r $PKG/usr/share/bash-completion + mkdir -p $PKG/usr/man/man1 + install -m 644 $SRC/*.1.gz $PKG/usr/man/man1/ } + |