diff options
Diffstat (limited to 'gnome-bluetooth/Pkgfile')
-rw-r--r-- | gnome-bluetooth/Pkgfile | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/gnome-bluetooth/Pkgfile b/gnome-bluetooth/Pkgfile new file mode 100644 index 0000000..0643423 --- /dev/null +++ b/gnome-bluetooth/Pkgfile @@ -0,0 +1,30 @@ +# Description: Sous-système Bluetooth de Gnome +# URL: http://live.gnome.org/GnomeBluetooth +# Maintainer: NuTyX GNOME team +# Packager: piernov <piernov@piernov.org> +# Depends on: gnome-control-center, hicolor-icon-theme, gvfs, obexd, dconf, nautilus-sendto, intltool, gnome-doc-utils, gobject-introspection +# Run on: gnome-control-center,hicolor-icon-theme,gvfs,obexd,dconf,nautilus-sendto + +name=gnome-bluetooth +version=3.1.4 +release=1 +source=(http://download.gnome.org/sources/$name/${version%.*}/$name-$version.tar.xz + 61-gnome-bluetooth-rfkill.rules) + +build() { + cd $name-$version + ./configure --prefix=/usr \ + --sysconfdir=/etc \ + --localstatedir=/var \ + --disable-schemas-compile \ + --disable-desktop-update \ + --disable-icon-update + make + make DESTDIR=$PKG install + + install -m644 -D $SRC/61-gnome-bluetooth-rfkill.rules $PKG/lib/udev/rules.d/61-gnome-bluetooth-rfkill.rules + install -d $PKG/etc/ld.so.conf.d + echo "/usr/lib/gnome-bluetooth" > $PKG/etc/ld.so.conf.d/$name.conf + + rm -rf $PKG/usr/share/gtk-doc +} |