Re: [aur-general] PKGBUILD for multiple packages: some examples?
Many thanks Gordian for the tip, I already know (somehow) how to write a PKGBUILD. I was asking if it's possible to add multiple package builds (in this case, the main program and the various solvers) in just one PKGBUILD and, if that's possible, how to do it. As PKGBUILDs have a Bash-like syntax, I suppose there's something like a "function" (Bash ones, I mean) in order to have different packages. Giovanni Santini --- Coding stuff: https://github.com/ItachiSan
If I understand you correctly then what you want is to download multiple sources and compile them separately as if they would be separate packages. This can be done by adding each and every source-file to the source array in one PKGBUILD and compile them in build, like this: build() { cd "$srcdir/$pkgname-PART-ONE" ./configure --whatever make cd "$srcdir/$pkgname-PART-TWO" ./configure --whatever make ... } now you just have to adjust the package() function accordingly and you are done. There is no special PKGBUILD-function. Everything common function/command is listed in https://wiki.archlinux.org/index.php/PKGBUILD , there is nothing more and nothing less. On Sat, Mar 28, 2015 at 11:05 AM, Giovanni Santini <giovannisantini93@yahoo.it> wrote:
participants (2)
-
Giovanni Santini
-
Gordian Edenhofer