blob: b437a6d8b2ea9195bd3e4007a79e1e01013ff12d (
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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
|
# Maintainer: Cebtenzzre <cebtenzzre (AT) gmail (DOT) com>
# Contributor: Massimiliano Torromeo <massimiliano.torromeo@gmail.com>
# Contributor: Blisfull <narthana.epa@gmail.com>
# Contributor: SahibBommelig <sahib@online.de>
_pkgname=rmlint
pkgbase=${_pkgname}-develop-git
pkgname=(rmlint-develop-git rmlint-shredder-develop-git)
pkgver=2.10.1.r213.g183647b8
pkgrel=1
url="https://github.com/sahib/rmlint"
license=('GPL3')
arch=('x86_64')
makedepends=('binutils' 'dconf' 'desktop-file-utils' 'gettext' 'git'
'gtksourceview3' 'json-glib' 'libelf' 'librsvg' 'python-cairo'
'python-gobject' 'python-requests' 'python-sphinx' 'scons'
'util-linux-libs' 'xdg-utils')
checkdepends=('dash' 'python-nose' 'python-parameterized' 'python-psutil'
'python-xattr')
source=("git+https://github.com/sahib/${_pkgname}.git#branch=develop")
md5sums=('SKIP')
pkgver() {
cd "$_pkgname"
git describe --long | sed 's/^v//;s/\([^-]*-g\)/r\1/;s/-/./g'
}
build() {
cd "$_pkgname"
scons config
scons -j4 DEBUG=1 --prefix="$pkgdir"/usr --actual-prefix=/usr
}
check() {
cd "$_pkgname"
RM_TS_PRINT_CMD=1 python -m nose -d -a '!slow' -e 'test_symlinks' -e 'test_order'
}
package_rmlint-develop-git() {
pkgdesc="Tool to remove duplicates and other lint, being much faster than fdupes"
depends=('binutils' 'json-glib' 'libelf' 'util-linux-libs')
provides=("${_pkgname}=${pkgver}")
conflicts=("$_pkgname")
cd "$_pkgname"
scons DEBUG=1 --prefix="$pkgdir"/usr install --actual-prefix=/usr
rm -rf "$pkgdir"/usr/share/{glib-2.0,icons,applications}
rm -rf "$pkgdir"/usr/lib
}
package_rmlint-shredder-develop-git() {
pkgdesc="Graphical user interface for rmlint"
depends=('dconf' 'gtksourceview3' 'librsvg' 'python-cairo' 'python-gobject'
'rmlint-develop-git' 'xdg-utils')
provides=("rmlint-shredder=${pkgver}")
conflicts=('rmlint-shredder')
cd "$_pkgname"
scons DEBUG=1 --prefix="$pkgdir"/usr install --actual-prefix=/usr
rm -rf "$pkgdir"/usr/{bin,share/locale,share/man}
rm "$pkgdir"/usr/share/glib-2.0/schemas/gschemas.compiled
}
|