create .deb packages for mattermost, android studio, and whatever else comes along
Go to file
Jeff Carr f28b4946f8 attempt to add google key
Signed-off-by: Jeff Carr <jcarr@wit.com>
2023-01-30 11:37:32 -06:00
InvokeAI re-make the maddy package 2023-01-29 15:54:22 -06:00
android-studio fix control files 2023-01-27 10:00:03 -06:00
bazel-google more attempts 2023-01-29 03:27:05 -06:00
cargo-ui add cargo-ui package 2023-01-30 05:58:38 -06:00
coredns add InvokeAI 2023-01-29 12:40:26 -06:00
flutter fix control files 2023-01-27 10:00:03 -06:00
flutter-source-build add rules to package flutter 2023-01-26 08:11:11 -06:00
maddy more maddy fixes 2023-01-29 16:27:10 -06:00
mattermost fix control files 2023-01-27 10:00:03 -06:00
photoprism more notes 2023-01-29 00:57:35 -06:00
tensorflow more attempts 2023-01-29 03:27:05 -06:00
wit attempt to add google key 2023-01-30 11:37:32 -06:00
.gitignore more notes 2023-01-29 00:57:35 -06:00
Makefile add cargo-ui package 2023-01-30 05:58:38 -06:00
README.md crap 2023-01-29 00:59:06 -06:00

README.md

Info

Packages up various stuff using the bare minimum of interaction to make a .deb package.

.deb packages are 'ar' files. You can create them with 'ar', but the recommended way seems to be to use dpkg-deb.

The packages themselves you can browse and/or download here:

http://mirrors.wit.org/wit/pool/main/

Makefile

help:
	@echo
	@echo "# this are just simple shortcuts to package up files on a system once you have it compiled and installed"
	@echo "cd <projectName>; make all"
	@echo

#
# Just for reference, you can make a debian package using 'ar' from the command line
#
# A .deb file is just output from 'ar rcs'
#
tar-ar:
	cd DEBIAN && tar --ignore-failed-read -cvJf ../control.tar.xz .
	cd files && tar -cvJf ../data.tar.xz .
	ar rcs ${BASENAME}_${VERSION}_amd64.deb debian-binary control.tar.xz data.tar.xz
	dpkg-deb --info ${BASENAME}_${VERSION}_amd64.deb

clean:
	rm -rf files/
	rm -f *.deb
	rm -f *.tar.xz data.tar.xz
	rm -rf */DEBIAN/