blob: 08ea7da70d97f71c92ba0e3139cb440edc12cb77 (
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
|
# Maintainer: devome <evinedeng@hotmail.com>
# Contributer: desbma
pkgname=debmirror
pkgver=2.42
pkgrel=2
pkgdesc='Debian partial mirror script, with ftp and package pool support'
url="https://salsa.debian.org/debian/${pkgname}"
arch=('any')
license=('GPL-2.0-or-later')
depends=('bzip2' 'perl-crypt-ssleay' 'perl-libwww' 'perl-lockfile-simple' 'rsync' 'xz')
optdepends=('ed' 'gnupg' 'patch')
source=("https://salsa.debian.org/debian/${pkgname}/-/archive/debian/1%25${pkgver}/${pkgname}-debian-1%25${pkgver}.tar.bz2")
sha256sums=('d0b8ab9d94abf9848a5f586b3e1cc341456bec5c51341cc51878e4ec449a2668')
build() {
cd "${pkgname}-debian-1%${pkgver}"
make all
}
check() {
cd "${pkgname}-debian-1%${pkgver}"
make check
}
package() {
cd "${pkgname}-debian-1%${pkgver}"
install -Dm 755 debmirror "${pkgdir}/usr/bin/debmirror"
install -Dm 644 TODO "${pkgdir}/usr/share/doc/${pkgname}/TODO"
install -Dm 644 examples/* "${pkgdir}/usr/share/doc/${pkgname}/examples/debmirror.conf"
install -Dm 644 mirror_size "${pkgdir}/usr/share/doc/${pkgname}/mirror_size"
install -Dm 644 debmirror.1 "${pkgdir}/usr/share/man/man1/debmirror.1"
}
|