AOSC-Archive / autobuild3

AOSC OS package maintenance toolkit (version 3)
https://aosc.io
GNU General Public License v2.0
24 stars 17 forks source link

Extended autotools support with metadata, TODO #32

Closed Artoria2e5 closed 9 years ago

Artoria2e5 commented 9 years ago

Two arguments.

. /etc/lsb_release
dumpver(){ ((PKGEPOCH)) && echo -n $PKGEPOCH:; echo -n $PKGVER; ((PKGREL)) && echo -n -$PKGREL; }
AUTOTOOLS_DEF+="--with-pkgversion='$(dumpver)_$DISTRIB_ID' --with-bugurl=https://bugs.anthonos.org "

Also check if there is something like that with cmake.

And shall we use --disable-option-checking?

MingcongBai commented 9 years ago

@Arthur2e5

That would be useful if it is not real GNU autotools included in the source. But no, if the configure script is not GNU autotools gemerated, then this is worthless.

Artoria2e5 commented 9 years ago

Added $BUGURL so abbs can use the repo's stuff to override it.