1234567891011121314151617181920212223242526272829303132333435 |
- # Tanım: Xfce paneli için Yerler Menüsü eklentisi
- # URL: http://goodies.xfce.org/projects/panel-plugins/xfce4-places-plugin
- # Paketçi: yasarciv67
- # Gerekler: intltool libnotify xfce4-panel
- # Grup: sistem
- isim=xfce4-places-plugin
- surum=1.7.0
- devir=1
- kaynak=(http://archive.xfce.org/src/panel-plugins/$isim/${surum%.*}/$isim-$surum.tar.bz2
- mounts.patch
- undefined-symbol.patch
- )
- derle() {
- cd "$isim-$surum"
- # Disk olmayan diğer bağları göster (örn. NFS)
- patch -Np1 -i "${SRC}/mounts.patch"
- # Bug 11939
- patch -Np1 -i "${SRC}/undefined-symbol.patch"
- ./configure \
- --prefix=/usr \
- --sysconfdir=/etc \
- --libexecdir=/usr/lib \
- --localstatedir=/var \
- --disable-static \
- --disable-debug
- make
- make DESTDIR="$PKG" install
- }
|