Skip to content

Commit

Permalink
Add saline-get
Browse files Browse the repository at this point in the history
  • Loading branch information
SalineOS committed Aug 18, 2012
1 parent d679ec4 commit 1b73fe0
Show file tree
Hide file tree
Showing 7 changed files with 74 additions and 0 deletions.
Empty file added saline-get/DEBIAN/conffiles
Empty file.
9 changes: 9 additions & 0 deletions saline-get/DEBIAN/control
@@ -0,0 +1,9 @@
Package: saline-get
Version: 2.0-0
Architecture: all
Maintainer: Anthony Nordquist <salinelinux@gmail.com>
Installed-Size: 94
Depends: coreutils, findutils, bash, sed, util-linux, apt
Section: system
Priority: optional
Description: Wrapper for apt that causes it to use the GTK debconf interface.
10 changes: 10 additions & 0 deletions saline-get/DEBIAN/postinst
@@ -0,0 +1,10 @@
#!/bin/sh
#
# see: dh_installdeb(1)

set -e


exit 0


11 changes: 11 additions & 0 deletions saline-get/DEBIAN/postrm
@@ -0,0 +1,11 @@
#!/bin/sh
#
# see: dh_installdeb(1)

set -e

#do nothing for now

exit 0


11 changes: 11 additions & 0 deletions saline-get/DEBIAN/preinst
@@ -0,0 +1,11 @@
#!/bin/sh
#
# see: dh_installdeb(1)

set -e

#Don't do anything

exit 0


11 changes: 11 additions & 0 deletions saline-get/DEBIAN/prerm
@@ -0,0 +1,11 @@
#!/bin/sh
#
# see: dh_installdeb(1)

set -e

#do nothing for now

exit 0


22 changes: 22 additions & 0 deletions saline-get/usr/bin/saline-get
@@ -0,0 +1,22 @@
#!/bin/bash
# Licensed under the GNU General Public License Version 2
#
# 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 2 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 copy of the GNU General Public License
# along with this program; if not, write to the Free Software
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
####################################################################################################
## Copyright 2012 Anthony Nordquist http://www.salineos.com salinelinux@gmail.com

DEBIAN_FRONTEND='gnome' dbus-launch apt-get "$@"

exit

0 comments on commit 1b73fe0

Please sign in to comment.