summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: f0a9a866052fdb8965b1a87aee465ebcd88f19ac (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
# Maintainer : Rob McCathie <korrode at gmail>
# Contributor: SpepS <dreamspepser at yahoo dot it>
# Contributor: vinz <vinz@archlinux.us>
# Contributor: Aurélien DESBRIÈRES <ice.cube@gmx.com>
# Contributor: Daniel Jenssen <daerandin@gmail.com>
 
pkgname=thunar-shares-plugin
pkgver=0.2.0.git
pkgrel=3
pkgdesc="Thunar plugin to quickly share a folder using Samba without requiring root access"
arch=('i686' 'x86_64')
url="http://goodies.xfce.org/projects/thunar-plugins/${pkgname}"
license=('GPL2' 'LGPL')
depends=('thunar' 'samba')
makedepends=('xfce4-dev-tools')
install="${pkgname}.install"
source=("https://git.xfce.org/thunar-plugins/thunar-shares-plugin/snapshot/thunar-shares-plugin-master.tar.bz2")
sha1sums=('SKIP')
 
prepare() {
  cd "${srcdir}/${pkgname}-master"
}
 
build() {
  cd "${srcdir}/${pkgname}-master"
  ./autogen.sh --prefix=/usr --enable-debug=no
  make
}
 
package() {
  cd "${srcdir}/${pkgname}-master"
  make DESTDIR="${pkgdir}" install
}