Bump revision for pkgs depending on jpeg (abi_depends bump).
[xbps/ojab.git] / srcpkgs / mercurial / template
blob03876dc183b2f8d5449b4e2505ef88a7d6d0cebd
1 # Template file for 'mercurial'
2 pkgname=mercurial
3 version=1.4
4 distfiles="http://mercurial.selenic.com/release/$pkgname-$version.tar.gz"
5 build_style=python-module
6 short_desc="Fast, lightweight source control management system"
7 maintainer="Juan RP <xtraeme@gmail.com>"
8 checksum=0726661abe30421019b1c2d3486e75fcedd059033b659c76c531038b6113c7c1
9 long_desc="
10  Mercurial is a fast, lightweight Source Control Management system
11  designed for efficient handling of very large distributed projects.
13  Fast
14         * Extremely high-performance delta-compressed storage scheme
15         * Optimized for disk layout and access efficiency
16         * Complete cross-indexing of files and changesets
17         * Bandwidth and CPU efficient HTTP and SSH sync protocols
19  Scalable
20         * Distributed development model supports unlimited numbers
21           of developers
22         * Allows arbitrary merging between developer branches
23         * Doesn't significantly degrade with large numbers of files
24           or changesets
25         * No waiting for locks!
27  Robust
28         * SHA1 integrity checking on repository data
29         * Append-only storage model with transaction journalling
30         * Fast full-repository verification
31         * Convenient backup
33  Easy to use
34         * Most commands are familiar to users of CVS and other systems
35         * Built-in command help
36         * Integrated stand-alone web interface
37         * Works with various GUI tools
39  Easy to adopt
40         * Runs on UNIX, MacOS X, and Windows
41         * Conversion tools available for many popular SCMs
42         * Allows a variety of usage models
43         * Supports user-defined hooks and extensions
45  Free
46         * Source code available under the GPL license
47         * Actively community supported and developed"
49 noarch=yes
50 Add_dependency full python
51 Add_dependency build gettext
53 post_install()
55         cd ${wrksrc} || return 1
56         install -d ${DESTDIR}/usr/share/man/man1
57         install -d ${DESTDIR}/usr/share/man/man5
58         install -m 644 doc/*.1 ${DESTDIR}/usr/share/man/man1
59         install -m 644 doc/*.5 ${DESTDIR}/usr/share/man/man5