blob: 03c7b8f55c95fd312d426b6079e53c33ac5b6e81 (
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
|
# Contributor: Michael Mason <ms13sp@gmail.com>
# Maintainer: Natanael Copa <ncopa@alpinelinux.org>
pkgname=cvs
pkgver=1.12.13
pkgrel=1
pkgdesc="Concurrent Versions System"
url="http://www.nongnu.org/cvs/"
arch="all"
license="GPL"
depends=""
makedepends="zlib-dev"
install=
subpackages="$pkgname-doc"
source="http://ftp.gnu.org/non-gnu/cvs/source/feature/$pkgver/$pkgname-$pkgver.tar.gz"
_builddir="$srcdir"/$pkgname-$pkgver
build() {
cd "$_builddir"
./configure --prefix=/usr \
--sysconfdir=/etc \
--mandir=/usr/share/man \
--infodir=/usr/share/info \
--with-external-zlib \
--with-tmpdir=/tmp \
|| return 1
make || return 1
}
package() {
cd "$_builddir"
make -j1 DESTDIR="$pkgdir" install
}
md5sums="7a71a2e7a64973ecf255965956a1d338 cvs-1.12.13.tar.gz"
|