mirror of
https://github.com/archlinux/aur.git
synced 2026-03-06 19:02:42 +01:00
Initial PKGBUILD status as of 28.11.2014
This commit is contained in:
commit
e9b83f9500
2 changed files with 45 additions and 0 deletions
18
.SRCINFO
Normal file
18
.SRCINFO
Normal file
|
|
@ -0,0 +1,18 @@
|
|||
pkgbase = ftwin
|
||||
pkgdesc = A tool useful to find duplicate files according to their content on your file system.
|
||||
pkgver = 0.8.5
|
||||
pkgrel = 1
|
||||
url = http://freecode.com/projects/ftwin
|
||||
arch = i686
|
||||
arch = x86_64
|
||||
license = APACHE
|
||||
depends = apr-util
|
||||
depends = check
|
||||
depends = libpuzzle
|
||||
optdepends = doxygen: generating docs
|
||||
optdepends = graphviz: generating graphs
|
||||
source = ftp://ftp.freebsd.org/pub/FreeBSD/ports/distfiles/ftwin-0.8.5.tar.bz2
|
||||
sha256sums = 03dec36503b3c781f287b4427e99d9d1ccc704f1d9e11eadcd630e4c29dea0ce
|
||||
|
||||
pkgname = ftwin
|
||||
|
||||
27
PKGBUILD
Normal file
27
PKGBUILD
Normal file
|
|
@ -0,0 +1,27 @@
|
|||
# Maintainer: Jaroslav Lichtblau <dragonlord@aur.archlinux.org>
|
||||
|
||||
pkgname=ftwin
|
||||
pkgver=0.8.5
|
||||
pkgrel=1
|
||||
pkgdesc="A tool useful to find duplicate files according to their content on your file system."
|
||||
arch=('i686' 'x86_64')
|
||||
url="http://freecode.com/projects/ftwin"
|
||||
license=('APACHE')
|
||||
depends=('apr-util' 'check' 'libpuzzle')
|
||||
optdepends=('doxygen: generating docs'
|
||||
'graphviz: generating graphs')
|
||||
source=(ftp://ftp.freebsd.org/pub/FreeBSD/ports/distfiles/$pkgname-$pkgver.tar.bz2)
|
||||
sha256sums=('03dec36503b3c781f287b4427e99d9d1ccc704f1d9e11eadcd630e4c29dea0ce')
|
||||
|
||||
build() {
|
||||
cd ${srcdir}/$pkgname-$pkgver
|
||||
|
||||
./configure --prefix=/usr
|
||||
make
|
||||
}
|
||||
|
||||
package() {
|
||||
cd ${srcdir}/$pkgname-$pkgver
|
||||
|
||||
make DESTDIR=${pkgdir} install
|
||||
}
|
||||
Loading…
Add table
Reference in a new issue