mirror of
https://github.com/moparisthebest/pacman
synced 2024-11-02 08:35:06 -04:00
4470e5ce01
* Addition of hacky architecture check in the _splitname function * Removal of libfetch from the archlinux proper - it has been renamed to libdownload and can be found at http://phraktured.net/libdownload * Merge of _some_ of the Frugalware makepkg change - this may still be incomplete * Removal of libftp from cvs proper * PKGBUILD manpage now says 'PKGBUILD' instead of FrugalBuild (he he)
26 lines
448 B
Makefile
26 lines
448 B
Makefile
SUBDIRS = lib/libalpm src/util src/pacman scripts doc doc/hu etc
|
|
|
|
if HAS_PERL
|
|
SUBDIRS += bindings/perl
|
|
endif
|
|
if HAS_PYTHON
|
|
SUBDIRS += bindings/python
|
|
endif
|
|
if HAS_JAVA
|
|
SUBDIRS += bindings/java
|
|
endif
|
|
|
|
EXTRA_DIST = \
|
|
ChangeLog \
|
|
COPYING \
|
|
README \
|
|
TODO \
|
|
TODO.autoconf
|
|
|
|
check: src/pacman
|
|
cd pactest; python pactest.py --test=tests/*.py -p ../src/pacman/pacman --debug=-1
|
|
|
|
tags:
|
|
ctags -a lib/libalpm/*.[ch]
|
|
ctags -a src/pacman/*.[ch]
|