commit ab0fc1e27640a180622418ffd029190c817a1bc5 Author: yenon Date: Wed May 18 01:50:49 2022 +0200 Initial commit, first packages. diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..ae5bb82 --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +**/*.pkg.* diff --git a/latex/PKGBUILD b/latex/PKGBUILD new file mode 100644 index 0000000..83c9292 --- /dev/null +++ b/latex/PKGBUILD @@ -0,0 +1,10 @@ +pkgname='yenon-latex' +pkgver='1.0.0' +pkgrel=1 +arch=('any') + +depends=( + kile + texlive-science + +) diff --git a/remove-qt-icons/PKGBUILD b/remove-qt-icons/PKGBUILD new file mode 100644 index 0000000..9b01473 --- /dev/null +++ b/remove-qt-icons/PKGBUILD @@ -0,0 +1,11 @@ +pkgname=remove-qt-icons +pkgver=1.0.0 +pkgrel=1 +pkgdesc="Remove QT tools via pacman-hook." +arch=('any') +source=(remove-qt-icons.hook) +sha256sums=('91eb03a0eef53bf95d2908b1aa80ee564f81c2aad2a4482a7f5c33fb6a2682fa') + +package() { + install -Dm0644 -t "$pkgdir/usr/share/libalpm/hooks/" ${source[0]} +} diff --git a/remove-qt-icons/remove-qt-icons.hook b/remove-qt-icons/remove-qt-icons.hook new file mode 100644 index 0000000..c8804dc --- /dev/null +++ b/remove-qt-icons/remove-qt-icons.hook @@ -0,0 +1,9 @@ +[Trigger] +Operation = Install +Operation = Upgrade +Type = Package +Target = qt5-tools +[Action] +Description = Removing desktop entries for QT-Tools +When = PostTransaction +Exec = /bin/sh -c "/usr/bin/rm /usr/share/applications/assistant.desktop /usr/share/applications/designer.desktop /usr/share/applications/linguist.desktop /usr/share/applications/qdbusviewer.desktop" diff --git a/remove-v4l2-icons/PKGBUILD b/remove-v4l2-icons/PKGBUILD new file mode 100644 index 0000000..20a47fb --- /dev/null +++ b/remove-v4l2-icons/PKGBUILD @@ -0,0 +1,11 @@ +pkgname=remove-v4l2-icons +pkgver=1.0.0 +pkgrel=1 +pkgdesc="Remove QT tools via pacman-hook." +arch=('any') +source=(remove-v4l2-icons.hook) +sha256sums=('e0760b9b3cce3bfa4cda6051b6610fcc444329b169e1ced073648373b6a00362') + +package() { + install -Dm0644 -t "$pkgdir/usr/share/libalpm/hooks/" ${source[0]} +} diff --git a/remove-v4l2-icons/remove-v4l2-icons.hook b/remove-v4l2-icons/remove-v4l2-icons.hook new file mode 100644 index 0000000..6910d9b --- /dev/null +++ b/remove-v4l2-icons/remove-v4l2-icons.hook @@ -0,0 +1,9 @@ +[Trigger] +Operation = Install +Operation = Upgrade +Type = Package +Target = v4l-utils +[Action] +Description = Removing desktop entries for V4L-Utils +When = PostTransaction +Exec = /bin/sh -c "/usr/bin/rm /usr/share/applications/qv4l2.desktop /usr/share/applications/qvidcap.desktop"