Start with APKBUILD for Alpine package

This commit is contained in:
timvisee 2019-03-13 18:10:17 +01:00
parent 47879a7d1a
commit 9ce61fe32e
No known key found for this signature in database
GPG key ID: B8DB720BC383E172
2 changed files with 39 additions and 0 deletions

View file

@ -279,4 +279,42 @@ package-aur:
- git push
- cd ..
# Alpine APK package release
package-alpine:
image: alpine:latest
stage: package
only:
- /^v(\d+\.)*\d+$/
dependencies:
- build-x86_64-linux-musl
variables:
RUST_TARGET: x86_64-unknown-linux-musl
before_script: []
script:
# Rename ffsend binary, move into Alpine package directory
- mv ./ffsend-$RUST_TARGET ./ffsend
- cd ./pkg/alpine
# Install SDK, prepare user, create build directories, configure abuild
- apk add alpine-sdk
- adduser -D ffsend
- addgroup ffsend abuild
- echo "ffsend ALL=(ALL) ALL" >> /etc/sudoers
- mkdir -p /var/cache/distfiles
- chmod a+w /var/cache/distfiles
- echo 'PACKAGER="timvisee <tim@visee.me>"' >> /etc/abuild.conf
- echo 'MAINTAINER="$PACKAGER"' >> /etc/abuild.conf
# Switch to new user, configure git, clone aports repository
- su - ffsend
- git config --global user.name timvisee
- git config --global user.email tim@visee.me
- git clone git://git.alpinelinux.org/aports
# TODO: configure with APKBUILD guide: https://wiki.alpinelinux.org/wiki/Creating_an_Alpine_package
# TODO: configure version number
# TODO: build package
# TODO: publish package
# TODO: add job to test ffsend{-git} AUR packages

1
pkg/alpine/APKBUILD Normal file
View file

@ -0,0 +1 @@
# TODO: implement this