generated from general-packages/pika-pkg-template
Clever way to fix version string, and checkout upstream at intended version (#2)
All checks were successful
PikaOS Package Build Only (amd64-v3) / build (push) Successful in 1m34s
All checks were successful
PikaOS Package Build Only (amd64-v3) / build (push) Successful in 1m34s
Reviewed-on: #2 Reviewed-by: ferreo <ferreo@noreply.pika> Co-authored-by: Renaud Lepage <root@cybikbase.com> Co-committed-by: Renaud Lepage <root@cybikbase.com>
This commit is contained in:
parent
dcca463d51
commit
3f4c80291a
2
.github/build-nest-v3
vendored
2
.github/build-nest-v3
vendored
@ -1 +1 @@
|
||||
22
|
||||
23
|
6
debian/changelog
vendored
6
debian/changelog
vendored
@ -1,3 +1,9 @@
|
||||
sbctl (0.16.0-101pika2) pika; urgency=low
|
||||
|
||||
* Build proper version sources
|
||||
|
||||
-- cybik <root@cybik.moe> Wed, 13 Nov 2024 11:15:00 -0800
|
||||
|
||||
sbctl (0.16.0-101pika1) pika; urgency=low
|
||||
|
||||
* Upstream release
|
||||
|
12
main.sh
12
main.sh
@ -12,7 +12,7 @@ VERSION="0.16"
|
||||
UPSTREAM_NAME="sbctl"
|
||||
|
||||
# Checkout and munch
|
||||
git clone https://github.com/Foxboron/sbctl.git "${UPSTREAM_NAME}"
|
||||
git clone https://github.com/Foxboron/sbctl.git "${UPSTREAM_NAME}" -b "${VERSION}"
|
||||
cp -rvf ./debian ./${UPSTREAM_NAME}/
|
||||
|
||||
# easier than figuring out the right way to override the prefix in the makefile
|
||||
@ -22,8 +22,16 @@ sed -i "s/\$(PREFIX)\/bin/\$(PREFIX)\/sbin/" "${UPSTREAM_NAME}/Makefile"
|
||||
# Get in there.
|
||||
pushd "./${UPSTREAM_NAME}/" || exit 1
|
||||
|
||||
# Clever way to auto-add a .0 if the upstream version is not semver
|
||||
VER_PER_COUNT="${VERSION//[^\.]}"
|
||||
if (( ${#VER_PER_COUNT} < 2 )); then
|
||||
TRUE_VERSION="${VERSION}.0"
|
||||
else
|
||||
TRUE_VERSION="${VERSION}"
|
||||
fi
|
||||
|
||||
# Get build deps
|
||||
LOGNAME=root dh_make --createorig -y -l -p ${UPSTREAM_NAME}_"$VERSION".0 || echo "dh-make: Ignoring Last Error"
|
||||
LOGNAME=root dh_make --createorig -y -l -p "${UPSTREAM_NAME}_$TRUE_VERSION" || echo "dh-make: Ignoring Last Error"
|
||||
apt-get build-dep ./ -y
|
||||
|
||||
# Build package
|
||||
|
Loading…
Reference in New Issue
Block a user