summaryrefslogtreecommitdiff
path: root/newapkbuild.in
AgeCommit message (Collapse)AuthorFilesLines
2016-03-23newapkbuild: rename _builddir to builddirNatanael Copa1-6/+6
the _builddir should never been used bu abuild due to the _ prefix.
2016-02-22newapkbuild: remove default prepare()Michael Zuo1-15/+0
Do not add prepare() to new APKBUILDs in the future, as this functionality is superseded by the addition of the default prepare patcher in abuild.
2015-11-30newapkbuild: dont set CXX/C COMPILERNatanael Copa1-3/+1
cmake is normally able to figure it out and setting them may break ccache.
2015-11-30newapkbuild: do not add --infodirNatanael Copa1-1/+0
normally not used
2015-09-15newapkbuild: *.la files are removed by defaultBartłomiej Piotrowski1-1/+0
2015-05-27newapkbuild: add CMake support.Isaac Dunham1-0/+32
This is a first try that *might* work for cross-compiling packages with an absolute bare minimum of requirements, if you're lucky. I can't debug that part further, but the references should help with it.
2014-03-31fix permissionsNatanael Copa1-0/+0
2013-11-21newapkbuild: detect github archivesNatanael Copa1-1/+16
2013-10-25newapkbuild: cosmetic fix for help messageNatanael Copa1-1/+2
2013-10-25functions: rename abuild_ver to program_versionNatanael Copa1-2/+2
2013-10-25functions: rename prog to programNatanael Copa1-2/+2
2013-08-01newapkbuild: add --build and --host optionsNatanael Copa1-1/+4
2013-07-09various: use long options, rework usagesDubiousjim1-17/+18
2013-07-09various: move conf-loading and i/o to functionsDubiousjim1-14/+7
2013-07-08various: tweak opening comments, whitespaceDubiousjim1-4/+2
Also remove incomplete efforts at listing "Depends on: ..."
2013-02-20newapkbuild: https is also an urlNatanael Copa1-1/+1
2011-12-21newapkbuild: add -n option for setting nameNatanael Copa1-15/+21
So we can set pkgname if it differs from download archive name
2011-06-28newapkbuild: use -y for python instead of -qNatanael Copa1-3/+3
2011-06-28newapkbuild: build and package sections for 'make' buildtypeNatanael Copa1-1/+15
This buildtype is when there is a simple Makefile only.
2011-06-28newapkbuild: not only autotools packages can have init.d scriptsNatanael Copa1-9/+9
2011-06-28newapkbuild: rename config_* functions to build_*Natanael Copa1-6/+6
We call make as well as needed so build_* is better function name.
2011-06-28Added python as a new templateFabian Affolter1-32/+74
With -q ('-q' for the moment, please change that) a template APKBUILD file for a python module is created. 'depends' and 'makedepends' are filled with standard values.
2011-06-06newapkbuild: fix previous commitNatanael Copa1-1/+1
2011-06-03newapkbuild: remove libtool archivesNatanael Copa1-0/+1
2011-03-17newapkbuild: assume perl package if package name starts with perl-Natanael Copa1-1/+1
2011-03-17newapkbuild: supporrt for forcing autotools or perl with -a -pNatanael Copa1-12/+57
2011-03-17newapkbuild: support for creating sourceforge source urlsNatanael Copa1-1/+7
2011-03-09newapkbuild: add the missing cd "$_builddir"Natanael Copa1-0/+1
2011-01-03newapkbuild: reworkNatanael Copa1-15/+103
Download the sourcepackage and analyze. If needed, have build() run ./configure. We could in future try figure out license automatically too.
2010-11-19newapkbuild: source PACKAGER from abuild.confNatanael Copa1-0/+7
2010-07-07newapkbuild: minor bugfix in is_uri()Natanael Copa1-0/+1
2010-06-16newapkbuid: fix pkgver in sourceNatanael Copa1-0/+1
2010-05-29newapkbuild: support for creating new from http sourceNatanael Copa1-1/+15
newapkbuild http://example.com/path/foo-1.0.tar.gz will set pkgname=foo pkgver=1.0 source="http://example.com/path/foo-1.0.tar.gz"
2009-10-24newapkbuild: move code from abuild to new scriptNatanael Copa1-0/+78
try keep code in abuild cleaner by moving out creation of new apkbuild to separate script.