forked from cromer/pamac-classic
add pamac-refresh
This commit is contained in:
parent
6639139d3a
commit
1a1da95554
6
Makefile
6
Makefile
@ -5,7 +5,7 @@ all:
|
||||
cd po; make gettext
|
||||
|
||||
clean:
|
||||
rm -f src/*.c src/pamac-daemon src/pamac-tray src/pamac-updater src/pamac-manager src/pamac-install
|
||||
rm -f src/*.c src/pamac-refresh src/pamac-daemon src/pamac-tray src/pamac-updater src/pamac-manager src/pamac-install
|
||||
rm -f resources/*.c
|
||||
rm -rf po/locale
|
||||
rm -f po/*.mo
|
||||
@ -20,7 +20,7 @@ install:
|
||||
install -Dm755 src/pamac-manager /usr/bin/pamac-manager
|
||||
install -Dm755 src/pamac-updater /usr/bin/pamac-updater
|
||||
install -Dm755 src/pamac-install /usr/bin/pamac-install
|
||||
#install -Dm755 src/pamac-refresh /usr/bin/pamac-refresh
|
||||
install -Dm755 src/pamac-refresh /usr/bin/pamac-refresh
|
||||
install -Dm755 src/pamac-install /usr/bin/pamac-install
|
||||
install -Dm644 data/applications/pamac-tray.desktop /etc/xdg/autostart/pamac-tray.desktop
|
||||
install -Dm644 data/applications/pamac-manager.desktop /usr/share/applications/pamac-manager.desktop
|
||||
@ -30,7 +30,7 @@ install:
|
||||
install -Dm644 data/dbus/org.manjaro.pamac.conf /etc/dbus-1/system.d/org.manjaro.pamac.conf
|
||||
install -Dm644 data/dbus/org.manjaro.pamac.service /usr/share/dbus-1/system-services/org.manjaro.pamac.service
|
||||
install -Dm644 data/systemd/pamac.service /usr/lib/systemd/system/pamac.service
|
||||
#install -Dm744 data/networkmanager/99_update_pamac_tray /etc/NetworkManager/dispatcher.d/99_update_pamac_tray
|
||||
install -Dm744 data/networkmanager/99_update_pamac_tray /etc/NetworkManager/dispatcher.d/99_update_pamac_tray
|
||||
install -Dm644 data/polkit/org.manjaro.pamac.policy /usr/share/polkit-1/actions/org.manjaro.pamac.policy
|
||||
|
||||
uninstall:
|
||||
|
@ -27,6 +27,11 @@ DIALOGS_FILES = choose_provider_dialog.vala \
|
||||
transaction_info_dialog.vala \
|
||||
progress_dialog.vala
|
||||
|
||||
pamac-refresh: refresh.vala
|
||||
valac -o pamac-refresh \
|
||||
--pkg=gio-2.0 \
|
||||
refresh.vala
|
||||
|
||||
pamac-daemon: ../vapi/libalpm.vapi ../vapi/polkit-gobject-1.vapi $(COMMON_SOURCES) daemon.vala
|
||||
valac -o pamac-daemon \
|
||||
$(COMMON_VALA_FLAGS) \
|
||||
@ -92,4 +97,4 @@ pamac-install: ../vapi/libalpm.vapi $(COMMON_SOURCES) $(DIALOGS_FILES) ../resour
|
||||
transaction.vala \
|
||||
installer.vala
|
||||
|
||||
binaries: pamac-daemon pamac-tray pamac-updater pamac-manager pamac-install
|
||||
binaries: pamac-refresh pamac-daemon pamac-tray pamac-updater pamac-manager pamac-install
|
||||
|
BIN
src/pamac-refresh
Executable file
BIN
src/pamac-refresh
Executable file
Binary file not shown.
37
src/refresh.vala
Normal file
37
src/refresh.vala
Normal file
@ -0,0 +1,37 @@
|
||||
/*
|
||||
* pamac-vala
|
||||
*
|
||||
* Copyright (C) 2014 Guillaume Benoit <guillaume@manjaro.org>
|
||||
*
|
||||
* This program is free software; you can redistribute it and/or modify
|
||||
* it under the terms of the GNU General Public License as published by
|
||||
* the Free Software Foundation; either version 3 of the License, or
|
||||
* (at your option) any later version.
|
||||
*
|
||||
* This program is distributed in the hope that it will be useful,
|
||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
* GNU General Public License for more details.
|
||||
*
|
||||
* You should have received a get of the GNU General Public License
|
||||
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
*/
|
||||
|
||||
namespace Pamac {
|
||||
[DBus (name = "org.manjaro.pamac")]
|
||||
public interface Daemon : Object {
|
||||
public abstract void refresh (int force, bool emit_signal) throws IOError;
|
||||
}
|
||||
}
|
||||
|
||||
int main (string[] args) {
|
||||
Pamac.Daemon daemon;
|
||||
try {
|
||||
daemon = Bus.get_proxy_sync (BusType.SYSTEM, "org.manjaro.pamac",
|
||||
"/org/manjaro/pamac");
|
||||
daemon.refresh (0, false);
|
||||
} catch (IOError e) {
|
||||
stderr.printf ("IOError: %s\n", e.message);
|
||||
}
|
||||
return 0;
|
||||
}
|
Loading…
Reference in New Issue
Block a user