# HG changeset patch # User prymula # Date 1706808469 -3600 # Node ID 15fcbb8857c3d2c7beefb137de6e5e3451fa7225 # Parent 3989cc565d092187253737a0f649ca90c32663c9 postagelabels-0.220120-0_PKG diff -r 3989cc565d09 -r 15fcbb8857c3 postagelabels/DEBIAN/debian.control --- a/postagelabels/DEBIAN/debian.control Thu Feb 01 18:15:03 2024 +0100 +++ b/postagelabels/DEBIAN/debian.control Thu Feb 01 18:27:49 2024 +0100 @@ -4,7 +4,7 @@ Maintainer: Przemysław R. Pietraszczyk Build-Depends: debhelper-compat (= 12), python3-all, dh-python, python3-gi, python3-gi-cairo, gir1.2-gtk-3.0, fakeroot Standards-Version: 0.220120-2~beta -Homepage: http://pietraszczyk.vxm.pl +Homepage: http://prymula.ct8.pl Package: postagelabels diff -r 3989cc565d09 -r 15fcbb8857c3 postagelabels/DEBIAN/postagelabels.dsc --- a/postagelabels/DEBIAN/postagelabels.dsc Thu Feb 01 18:15:03 2024 +0100 +++ b/postagelabels/DEBIAN/postagelabels.dsc Thu Feb 01 18:27:49 2024 +0100 @@ -7,8 +7,8 @@ Architecture: all Version: 0.220120-2~beta Maintainer: Przemysław R. Pietraszczyk -Homepage: http://pietraszczyk.vxm.pl -DEBTRANSFORM-TAR: debian.tar.gz +Homepage: http://prymula.ct8.pl + DEBTRANSFORM-TAR: postagelabels-0.220120-2~beta.tar.gz Standards-Version: 0.220120-2~beta diff -r 3989cc565d09 -r 15fcbb8857c3 postagelabels/Makefile --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/postagelabels/Makefile Thu Feb 01 18:27:49 2024 +0100 @@ -0,0 +1,22 @@ + +prefix=/usr + +install: + mkdir -pm 0755 $(prefix)/share/postagelabels + install -m 0755 postagelabels.py $(prefix)/bin + install -m 0644 png/postagelabels.png $(prefix)/share/postagelabels + install -m 0644 png/blank_small.png $(prefix)/share/postagelabels + install -m 0644 png/szablon.png $(prefix)/share/postagelabels + install -m 0644 postagelabels.desktop /usr/share/applications + +.PHONY: install + +uninstall: + rm $(prefix)/share/postagelabels/postagelabels.png + rm $(prefix)/share/postagelabels/blank_small.png + rm $(prefix)/share/postagelabels/szablon.png + rmdir $(prefix)/share/postagelabels/ + rm $(prefix)/bin/postagelabels.py + rm /usr/share/applications/postagelabels.desktop + +.PHONY: uninstall diff -r 3989cc565d09 -r 15fcbb8857c3 postagelabels/Makefile.aur --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/postagelabels/Makefile.aur Thu Feb 01 18:27:49 2024 +0100 @@ -0,0 +1,23 @@ +prefix=$DESTDIR + +install: + mkdir -pm 0755 $(prefix)/bin + mkdir -pm 0755 $(prefix)/share/postagelabels + mkdir -pm 0755 $(prefix)/share/applications + install -m 0755 postagelabels.py $(prefix)/bin + install -m 0644 png/postagelabels.png $(prefix)/share/postagelabels + install -m 0644 png/blank_small.png $(prefix)/share/postagelabels + install -m 0644 png/szablon.png $(prefix)/share/postagelabels + install -m 0644 postagelabels.desktop $(prefix)/share/applications + +.PHONY: install + +uninstall: + rm $(prefix)/share/postagelabels/postagelabels.png + rm $(prefix)/share/postagelabels/blank_small.png + rm $(prefix)/share/postagelabels/szablon.png + rmdir $(prefix)/share/postagelabels/ + rm $(prefix)/bin/postagelabels.py + rm $(prefix)/share/applications/postagelabels.desktop + +.PHONY: uninstall diff -r 3989cc565d09 -r 15fcbb8857c3 postagelabels/PKG/PKGBUILD --- a/postagelabels/PKG/PKGBUILD Thu Feb 01 18:15:03 2024 +0100 +++ b/postagelabels/PKG/PKGBUILD Thu Feb 01 18:27:49 2024 +0100 @@ -1,7 +1,7 @@ # Maintainer: Przemyslaw R. Pietraszczyk pkgname=postagelabels pkgver=0.220120 -pkgrel=0 +pkgrel=2~beta pkgdesc="Create and arrange mailing labels on canvas" arch=('any') url="prymula.ct8.pl" diff -r 3989cc565d09 -r 15fcbb8857c3 postagelabels/makefile --- a/postagelabels/makefile Thu Feb 01 18:15:03 2024 +0100 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,22 +0,0 @@ - -prefix=/usr - -install: - mkdir -pm 0755 $(prefix)/share/postagelabels - install -m 0755 postagelabels.py $(prefix)/bin - install -m 0644 png/postagelabels.png $(prefix)/share/postagelabels - install -m 0644 png/blank_small.png $(prefix)/share/postagelabels - install -m 0644 png/szablon.png $(prefix)/share/postagelabels - install -m 0644 postagelabels.desktop /usr/share/applications - -.PHONY: install - -uninstall: - rm $(prefix)/share/postagelabels/postagelabels.png - rm $(prefix)/share/postagelabels/blank_small.png - rm $(prefix)/share/postagelabels/szablon.png - rmdir $(prefix)/share/postagelabels/ - rm $(prefix)/bin/postagelabels.py - rm /usr/share/applications/postagelabels.desktop - -.PHONY: uninstall diff -r 3989cc565d09 -r 15fcbb8857c3 postagelabels/postagelabels.py