| 1 |
#!/bin/sh |
| 2 |
|
| 3 |
# Script to make Debian packages for CFPlus and its dependencies. |
| 4 |
# You obviously need dh-make-perl and perl to build these. |
| 5 |
# libevent-perl needs to be the newest version from CPAN which is why |
| 6 |
# I added it to the build list. |
| 7 |
# The following packages are needed to be able to build CFPlus: |
| 8 |
# - libsdl-image1.2-dev |
| 9 |
# - libsdl-mixer1.2-dev |
| 10 |
# - libglib1.2-dev |
| 11 |
# - libpango1.0-dev |
| 12 |
# - debhelper |
| 13 |
|
| 14 |
dh-make-perl --cpan-mirror http://cpan.univ-paris.com --build --notest --depends perl --cpan Event |
| 15 |
dh-make-perl --cpan-mirror http://cpan.univ-paris.com --build --notest --depends perl --cpan Compress::LZF |
| 16 |
dh-make-perl --cpan-mirror http://cpan.univ-paris.com --build --notest --depends perl --cpan Pod::POM |
| 17 |
dh-make-perl --cpan-mirror http://cpan.univ-paris.com --build --notest --depends perl --cpan Crossfire |
| 18 |
dh-make-perl --cpan-mirror http://cpan.univ-paris.com --build --notest --depends perl,libpod-pom-perl,libcompress-lzf-perl,libcrossfire-perl,libberkeleydb-perl,libyaml-syck-perl,libevent-perl,libsdl-image1.2,libsdl-mixer1.2 --bdepends libsdl-image1.2-dev,libsdl-mixer1.2-dev,libglib1.2-dev,libpango1.0-dev,debhelper --requiredeps --cpan CFPlus |