blob: eb9bb2cbc5866549a4182e568ea07cb83afd8e36 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
# Description: Bibliothèque pour les requêtes OpenPGP.
# URL: http://git.gnome.org/libcryptui
# Maintainer: NuTyX Gnome team
# Packager: piernov <piernov@piernov.org>
# Depends on: gtk3, gpgme, dbus-glib, libnotify, libgnome-keyring, dconf, gobject-introspection, intltool
# Run on: gtk3,gpgme,dbus-glib,libnotify,libgnome-keyring,dconf
name=libcryptui
version=3.4.1
release=1
source=(http://ftp.gnome.org/pub/GNOME/sources/$name/${version%.*}/$name-$version.tar.xz)
build() {
cd $name-$version
./configure --prefix=/usr \
--disable-gtk-doc \
--enable-introspection=yes \
--disable-schemas-compile
make
make DESTDIR=$PKG install
rm -rf $PKG/usr/share/gtk-doc
}
|