Update rules
This commit is contained in:
parent
3925773250
commit
3fdb0e1ad9
27
debian/rules
vendored
27
debian/rules
vendored
@ -12,9 +12,6 @@ SHARE = /usr/share
|
|||||||
## Source directory, called upon by $(srcdir)
|
## Source directory, called upon by $(srcdir)
|
||||||
srcdir = $(shell debian/scripts/get_pwd.sh)
|
srcdir = $(shell debian/scripts/get_pwd.sh)
|
||||||
|
|
||||||
## If building a singular package you can remove the number, and as you guessed you call upon it with $(pkgdir)
|
|
||||||
pkgdir = $(srcdir)/debian/xdg-desktop-portal-hyprland
|
|
||||||
|
|
||||||
## === End end of region ===
|
## === End end of region ===
|
||||||
|
|
||||||
## === the chain of command ===
|
## === the chain of command ===
|
||||||
@ -59,33 +56,17 @@ srcdir = $(shell debian/scripts/get_pwd.sh)
|
|||||||
## Note : overrides must be places above %:
|
## Note : overrides must be places above %:
|
||||||
## So here's a few examples:
|
## So here's a few examples:
|
||||||
|
|
||||||
override_dh_build:
|
|
||||||
make all
|
|
||||||
|
|
||||||
## overriding dh_clean to make it not delete rust vendor files:
|
## overriding dh_clean to make it not delete rust vendor files:
|
||||||
#override_dh_clean:
|
#override_dh_clean:
|
||||||
# echo "disabled"
|
# echo "disabled"
|
||||||
|
|
||||||
## overriding dh_auto_configure to add custom configs:
|
## overriding dh_auto_configure to add custom configs:
|
||||||
#override_dh_auto_configure:
|
override_dh_auto_configure:
|
||||||
# $(srcdir)/configure -DCMAKE_BUILD_TYPE=Release -DCMAKE_INSTALL_DATADIR=/usr/share -DCMAKE_LIBRARY_PATH=/usr/lib/x86_64-linux-gnu -DBUILD_PLUGIN=OFF
|
cmake -DCMAKE_BUILD_TYPE=Release -DCMAKE_INSTALL_PREFIX=/usr -DCMAKE_LIBRARY_PATH=/usr/lib/x86_64-linux-gnu -B build
|
||||||
|
cmake --build build --config Release --target all
|
||||||
## overriding dh_install to install files to a package:
|
|
||||||
override_dh_auto_install:
|
|
||||||
|
|
||||||
override_dh_install:
|
override_dh_install:
|
||||||
mkdir -p $(pkgdir)/${LIBEXEC}
|
DESTDIR=debian/tmp cmake --install build
|
||||||
mkdir -p $(pkgdir)/${SHARE}
|
|
||||||
mkdir -p $(pkgdir)/usr/bin
|
|
||||||
mkdir -p $(pkgdir)/${SHARE}/dbus-1/services
|
|
||||||
mkdir -p $(pkgdir)/${LIBEXEC}/systemd/user
|
|
||||||
mkdir -p $(pkgdir)/${SHARE}/xdg-desktop-portal/portals
|
|
||||||
cp -f $(srcdir)/build/hyprland-share-picker/hyprland-share-picker $(pkgdir)/usr/bin/hyprland-share-picker
|
|
||||||
cp -f $(srcdir)/build/xdg-desktop-portal-hyprland $(pkgdir)/${LIBEXEC}/xdg-desktop-portal-hyprland
|
|
||||||
cp -f $(srcdir)/hyprland.portal $(pkgdir)/${SHARE}/xdg-desktop-portal/portals/hyprland.portal
|
|
||||||
sed "s|@libexecdir@|${LIBEXEC}|g" $(srcdir)/org.freedesktop.impl.portal.desktop.hyprland.service.in > $(pkgdir)/${SHARE}/dbus-1/services/org.freedesktop.impl.portal.desktop.hyprland
|
|
||||||
sed "s|@libexecdir@|${LIBEXEC}|g" $(srcdir)/contrib/systemd/xdg-desktop-portal-hyprland.service.in > $(pkgdir)/${LIBEXEC}/systemd/user/xdg-desktop-portal-hyprland.service
|
|
||||||
chmod 755 $(pkgdir)/${LIBEXEC}/xdg-desktop-portal-hyprland
|
|
||||||
## === End end of region ===
|
## === End end of region ===
|
||||||
|
|
||||||
## This here will start the build:
|
## This here will start the build:
|
||||||
|
Loading…
Reference in New Issue
Block a user