summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 03791fe5655a711a2ef8a4ce10829177aef89af3 (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
# Maintainer: Santiago Pedroza Díaz <santpedrozadiaz@gmail.com>
pkgname=organice-git
pkgver=1..
pkgrel=1
pkgdesc="Organice is a tool to move files by extension or part of their name from the command line in an easy way."
arch=(x86_64)
url="https://github.com/snat-s/organice"
license=('GPL')
depends=()
makedepends=(git make)
optdepends=()
provides=(organice)
source=("git+$url")
md5sums=('SKIP')

pkgver() {
    cd "${_pkgname}"
    printf "1.%s.%s" "$(git rev-list --count HEAD)" "$(git rev-parse --short HEAD)"
}

package() {
	cd organice	
	make DESTDIR="$pkgdir/" install
}