mirror of
https://github.com/void-linux/void-packages.git
synced 2025-07-28 08:22:56 +02:00
Merge pull request #73 from xdave/master
Magically make opening files and dirs from chromium work
This commit is contained in:
commit
84585c87de
3 changed files with 18 additions and 2 deletions
12
srcpkgs/base-files/files/xdg-user-dirs.sh
Normal file
12
srcpkgs/base-files/files/xdg-user-dirs.sh
Normal file
|
@ -0,0 +1,12 @@
|
||||||
|
#!/bin/sh
|
||||||
|
|
||||||
|
CFGDIR=$HOME/.config
|
||||||
|
|
||||||
|
if [ -f "/usr/bin/xdg-user-dirs-update" ] && [ -f "/usr/bin/xdg-user-dirs-gtk-update" ]; then
|
||||||
|
if [ ! -f "$CFGDIR/user-dirs.dirs" ] && [ ! -f "$CFGDIR/user-dirs.locale" ]; then
|
||||||
|
xdg-user-dirs-update
|
||||||
|
xdg-user-dirs-gtk-update
|
||||||
|
echo "XDG user dirs created/updated."
|
||||||
|
fi
|
||||||
|
fi
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
# Template file for 'base-files'
|
# Template file for 'base-files'
|
||||||
pkgname=base-files
|
pkgname=base-files
|
||||||
version=0.86
|
version=0.86
|
||||||
revision=1
|
revision=2
|
||||||
bootstrap=yes
|
bootstrap=yes
|
||||||
makedepends="base-directories xbps-triggers"
|
makedepends="base-directories xbps-triggers"
|
||||||
short_desc="Void Linux base system files"
|
short_desc="Void Linux base system files"
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
# Template file for 'gvfs'
|
# Template file for 'gvfs'
|
||||||
pkgname=gvfs
|
pkgname=gvfs
|
||||||
version=1.16.2
|
version=1.16.2
|
||||||
revision=1
|
revision=2
|
||||||
build_style=gnu-configure
|
build_style=gnu-configure
|
||||||
configure_args="--disable-hal --disable-afc
|
configure_args="--disable-hal --disable-afc
|
||||||
--with-bash-completion-dir=/usr/share/bash-completion/completions"
|
--with-bash-completion-dir=/usr/share/bash-completion/completions"
|
||||||
|
@ -19,6 +19,10 @@ license="LGPL-2.1"
|
||||||
distfiles="${GNOME_SITE}/$pkgname/1.16/$pkgname-$version.tar.xz"
|
distfiles="${GNOME_SITE}/$pkgname/1.16/$pkgname-$version.tar.xz"
|
||||||
checksum=6b0e62d27fe73844efb536689057b762fbce085984800c83395371306ec547f1
|
checksum=6b0e62d27fe73844efb536689057b762fbce085984800c83395371306ec547f1
|
||||||
|
|
||||||
|
post_install() {
|
||||||
|
cd ${DESTDIR}/usr/bin && ln -sf gvfs-open gnome-open
|
||||||
|
}
|
||||||
|
|
||||||
gvfs-devel_package() {
|
gvfs-devel_package() {
|
||||||
short_desc+=" - development files"
|
short_desc+=" - development files"
|
||||||
pkg_install() {
|
pkg_install() {
|
||||||
|
|
Loading…
Add table
Reference in a new issue