blob: fab2bcc5633c93aef1cdb17bedf43f9d030473c0 (
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
|
# Contributor: Fabian Affolter <fabian@affolter-engineering.ch>
# Maintainer: Fabian Affolter <fabian@affolter-engineering.ch>
pkgname=mr
pkgver=1.10
pkgrel=0
pkgdesc="A multiple repository management tool"
url="http://kitenet.net/~joey/code/mr/"
arch="noarch"
license="GPL2+"
depends="perl"
depends_dev=""
makedepends=""
install=""
subpackages="$pkgname-doc"
source="http://ftp.de.debian.org/debian/pool/main/m/mr/"$pkgname"_"$pkgver".tar.gz"
_builddir="$srcdir"/$pkgname
build() {
cd "$_builddir"
make || return 1
}
package() {
cd "$_builddir"
install -Dm755 $pkgname "$pkgdir"/usr/bin/$pkgname || return 1
cd "$_builddir"/lib
for file in git-fake-bare git-svn unison; do
install -Dpm 0644 $file \
"$pkgdir"/usr/share/$pkgname/$file || return 1
done
}
doc() {
cd "$_builddir"
mkdir -p "$subpkgdir"/usr/share/man || return 1
mv "$_builddir"/*.1 "$subpkgdir"/usr/share/man/ || return 1
# Sample configuration files
for file in mrconfig mrconfig.complex; do
install -Dpm 0644 $file \
"$subpkgdir"/usr/share/doc/$pkgname/$file || return 1
done
}
md5sums="cbb6483e9550b15de3b9365d5c9beffe mr_1.10.tar.gz"
|