13 lines
624 B
Bash
13 lines
624 B
Bash
fpm -s dir -t deb -p build/$ARCH/deb-simple_$VERSION.deb \
|
|
-n deb-simple -v $VERSION \
|
|
--config-files /etc/deb-simple.conf \
|
|
--deb-priority optional --force \
|
|
--deb-compression bzip2 \
|
|
--description "Dead Simple Package Manager" \
|
|
-m "Tyler Stuyfzand <admin@meow.tf>" --vendor "Meow.tf" \
|
|
--before-install packaging/scripts/preinst.deb \
|
|
-a $ARCH build/$ARCH/deb-simple=/usr/bin/deb-simple \
|
|
packaging/deb-simple.service=/lib/systemd/system/deb-simple.service \
|
|
sample_conf.ini=/etc/deb-simple.conf
|
|
|
|
curl -X POST "$UPLOAD_URL&arch=$ARCH" -F "file=@build/$ARCH/deb-simple_$VERSION.deb" |