[Solved] List AUR packages installed and only AUR packages.

Here's a good one.  Thought this would be easy but thought it over and then looked around a bit and haven't found anything.  There's might just be an easy way to do this that will make me *bonk* my head in the morning but I haven't found it yet.  I'm looking to be able to just list the packages I have installed from AUR and not any that I have gotten from the official repos.  I've checked out some utilities in AUR (like AURcheck) but as far as I can tell they just look for AUR updates.  Anyone know of a way to do this?
Last edited by Gen2ly (2009-10-30 14:32:22)

I just got to reinstalling and this was a lifesaver - it worked great.  Thank for the help, brisbin, ghost, Allan...
@Ghost, I would have used packup but I had a couple downgraded packages and I wanted to be able to troubleshoot it.
The tip about the grep -v doing 'shortnameplus' was a good tip, Profjim.  I hadn't read this last post before and during the reinstall I was a bit surprised nvidia wasn't installed so... all is good now.
I created a script to be able to create the backup list and restores from it simliar to ghosts and am able to run it in cron job.  Probably not a big deal, but... phhht.  Here it is for anyone that can use it:
#!/bin/bash
# pacbac - Create and restore from list all installed packages
# Package list locations (official and local)
pkglsoff=/opt/backup/pc-emach/arch-pkglist-official
pkglsloc=/opt/backup/pc-emach/arch-pkglist-local
# Exclude packages
excldoff=()
excldloc=()
# Use filename as program name
prog=${0##*/}
# Text color variables
bldblu='\e[1;34m' # blue
bldred='\e[1;31m' # red
bldwht='\e[1;37m' # white
txtcyn='\e[0;36m' # cyan
txtund=$(tput sgr 0 1) # underline
txtrst='\e[0m' # text reset
info=${bldwht}*${txtrst}
pass=${bldblu}*${txtrst}
warn=${bldred}!${txtrst}
# If restoring, be sure yaourt is installed
if [[ "$1" == 'r' ]] && [[ -z $(pacman -Qs yaourt) ]]; then
echo ""
echo -e "$warn $prog requires ${txtund}}Yaourt${txtrst} to be installed."
echo -e " ${txtcyn}http://wiki.archlinux.org/index.php/Yaourt${txtrst}"
echo ""
exit
fi
case $1 in
b ) # Create list of official repository packages (core, extra, community)
echo -e "$info Creating list of official (core/extra/community packages) packages installed."
# Create list, remove local, base
pacman -Qqe | grep -vx "$(pacman -Qqg base)" | grep -vx "$(pacman -Qqm)" > "$pkglsoff"
# Create list of local packages (includes the AUR)
echo -e "$info Creating list of local (includes AUR) packages installed."
pacman -Qqm > "$pkglsloc"
echo -e "$pass Official package list saved to ${txtund}"$pkglsoff"${txtrst}"
echo -e "$pass Local package list saved to ${txtund}"$pkglsloc"${txtrst}" ;;
r ) # Update repository database, then restore packages from list
echo -e "$info Installing packages from lists"
sudo pacman -Sy
# use -f to overwrite conflicting files
sudo pacman -S --needed $(cat "$pkglsoff")
# Yaourt doesn't have --needed check
yaourt -S $(cat "$pkglsloc" | grep -vx "$(pacman -Qqm)") ;;
* ) echo -e " pacbac b - build installed packages list. (dir:${txtund}"${pkglsoff%/*}"${txtrst})"
echo -e " pacbac r - restore installed packages from package list." ;;
esac
Last edited by Gen2ly (2009-10-31 14:16:55)

Similar Messages

  • Install and uninstall dbms_java package in 10g

    Hi,
    How to install and unistall dbms_java package in oracle 10g (10.2.0.4)
    Thanks.

    A-K      
         Newbie
    Handle:      A-K
    Status Level:      Newbie
    Registered:      Aug 5, 2007
    Total Posts:      180
    Total Questions:      88 (81 unresolved)
    Name      Amol
    Location      Mumbai,India
    two many questions , few marked as answered. mark the answered thread as answered.
    Posters, please mind these common-sense rules when participating here:
    - When asking a question, provide all the details that someone would need to answer it. Consulting documentation first is highly recommended.
    - When answering a question, please be courteous; there are different levels of experience represented here. A poorly worded question is better ignored than flamed - or better yet, help the poster ask a better question.
    - It is considered good etiquette to reward answerers with points (as "helpful" - 5 pts - or "correct" - 10pts).
    - See more tips in the FAQ
    Thanks for doing your part to make this community as valuable as possible for everyone!
    - OTN

  • Best practices for installing and maintaining Haskell packages

    Hey all, so 2014 has been a year of headaches with handling haskell packages on Arch (see previously). Everytime I do a system upgrade I seem to get dependency issues related to haskell packages. I've solved it many times by forcing removal of packages and reinstalling until things work without errors. There was a period where I didn't upgrade for almost 3 months because I didn't have the time to troubleshoot. Now that I have some free time I'd like to sort out the issue. I feel this might be an issue with how I'm handling the installation of haskell packages, maybe the repo order in my pacman config or something? I'm hoping to get some input on how others are handling haskell packages so its not always an issue whenever I try to keep the system up to date. My day to day requirements include xmonad, xmobar and pandoc, I also use aura as my AUR package manager.
    Here is the repo section of my pacman.conf
    [core]
    Include = /etc/pacman.d/mirrorlist
    [haskell-core]
    Server = http://xsounds.org/~haskell/core/$arch
    [haskell-happstack]
    Server = http://noaxiom.org/$repo/$arch
    [extra]
    Include = /etc/pacman.d/mirrorlist
    [community]
    Include = /etc/pacman.d/mirrorlist
    [multilib]
    Include = /etc/pacman.d/mirrorlist
    # infinality-bundle repository
    [infinality-bundle]
    Server = http://bohoomil.com/repo/$arch
    [infinality-bundle-multilib]
    Server = http://bohoomil.com/repo/multilib/$arch
    [infinality-bundle-fonts]
    Server = http://bohoomil.com/repo/fonts
    Here is the latest issue if trying pacman -Syu
    error: failed to prepare transaction (could not satisfy dependencies)
    :: haskell-lens-aeson: requires haskell-lens<4.5
    And here is the lastest output from trying to upgrade Aura
    error: failed to prepare transaction (could not satisfy dependencies)
    :: haskell-aeson: requires haskell-hashable=1.2.2.0-3
    :: haskell-aeson: requires haskell-unordered-containers=0.2.5.1-1
    :: haskell-aeson: requires haskell-vector=0.10.12.1-1
    :: haskell-aeson-pretty: requires haskell-unordered-containers=0.2.5.1-1
    :: haskell-aeson-pretty: requires haskell-vector=0.10.12.1-1
    :: haskell-conduit: requires haskell-void=0.6.1-73
    :: haskell-crypto-numbers: requires haskell-vector=0.10.12.1-1
    :: haskell-crypto-random: requires haskell-vector=0.10.12.1-1
    :: haskell-http-client-tls: requires haskell-http-client=0.4.5-1
    :: haskell-http-conduit: requires haskell-http-client=0.4.5-1
    :: haskell-http-conduit: requires haskell-http-types=0.8.5-5
    :: haskell-juicypixels: requires haskell-vector=0.10.12.1-1
    :: haskell-lens-aeson: requires haskell-lens<4.5
    :: haskell-pandoc: requires haskell-http-client=0.4.5-1
    :: haskell-pandoc: requires haskell-http-types=0.8.5-5
    :: haskell-pandoc: requires haskell-unordered-containers=0.2.5.1-1
    :: haskell-pandoc: requires haskell-vector=0.10.12.1-1
    :: haskell-scientific: requires haskell-hashable=1.2.2.0-3
    :: haskell-yaml: requires haskell-unordered-containers=0.2.5.1-1
    :: haskell-yaml: requires haskell-vector=0.10.12.1-1
    I could always brute force this by trying to force out some of the packages but I'd like to try and find a better solution than having to go through the this time-consuming process everytime I try to do a system upgrade. Any input would be greatly appreciated, thanks!

    I apologize for posting in the wrong section.
    Just did a quick scan of the mailling list and found an easy work around with
    pacman -Syu --ignore 'haskell-*'
    I'll try sending a message to the repo maintainers to get a better understanding of what's occuring here.
    Thanks guys, sorry for not doing a thorough search of where to address the issue.

  • Install TFS 2012 Solution packages (WSP) on MOSS 2007 that already have TFS 2010 Solution package installed and deployed

    Hi
    I hope to place this question in the proper forum but if not, can someone move it to the right forum. Thanks
    I have a MOSS 2007 farm and I have 2 TFS 2010 SharePoint extension solution package (WSP) installed and working properly for a while now. 
    Microsoft.TeamFoundation.SharePoint.Dashboards.wsp and Microsoft.TeamFoundation.SharePoint.wsp
    The Application team is going to upgrade their TFS 2010 server to TFS 2012 and want me to installed the new TFS 2012 SharePoint WSP solution to our MOSS farm.
    My Question is that do I have to uninstall TFS 2010 solution package first or can I installed the new TFS 2012 solution packages in addition and both TFS 2010 and TFS 2012 solution package will co-exist and will work properly?
    the reason i want to do this is making sure all existing TFS 2010 will still work.  My concern is if I have to uninstall TFS 2010 solution just to get TFS 2012 solution then run into problem with existing TFS 2010 projects.
    Thanks in advance for any advice or insight on this.
    Swanl
    Swanl

    Hi Swanl,
    you may check on the prequisite in sharepoint products,
    "SharePoint Products: If you have a portal server, you might have to upgrade it to continue using SharePoint integration. We no longer support Windows SharePoint Services 3.0 or Microsoft Office SharePoint Server 2007. See
    SharePoint Products requirements for Team Foundation Server."
    Supported versions, editions
    SharePoint Foundation 2013¹
    SharePoint Server 2013,¹ (Enterprise or Standard edition)
    SharePoint Foundation 2010²
    SharePoint Server 2010,² (Enterprise or Standard edition)
    http://msdn.microsoft.com/en-us/library/hh667648.aspx
    Regards,
    Aries
    Microsoft Online Community Support
    Please remember to click “Mark as Answer” on the post that helps you, and to click “Unmark as Answer” if a marked post does not actually answer your question. This can be beneficial to other community members reading the thread.

  • How to install and use DBXML package in Ubuntu Server 8.04 64bit

    Hi all.
    I used to install and use DBXML in Ubuntu Desktop 8.04 32bit. Now I want to use on Ubuntu Server 8.04 64bit.
    This is code for my installation (I use DBXML 2.2.13)
    env CFLAGS="-O0" sh buildall.sh enable-java with-xerces="xerces-c-src" with-berkeleydb-prefix="/usr/local/BerkeleyDB.4.3" with-xerces-prefix="/usr/local" with-pathan-prefix="/usr/local" with-xquery-prefix="/usr/local/BerkeleyDB.XQuery.1.2" --with-dbxml-prefix="/usr/local/BerkeleyDBXML.2.2"
    After installing, I could open Container, get Document, but when print the result (by "print" command), it failed. (stdin:3: print failed, Error: nsUnmarshalNode overlap File: Nsutil.cpp Line: 2358). Of course, all above commands run successfully with Ubuntu Desktop 8.04 32bit.
    Can you tell me which differences between 2 OS version and how to fix it
    Thanks

    Hello,
    Make sure that you are building a 64-bit version for the 64-bit platform. It's possible that you have mismatched some libraries. Be sure to add "-b 64" to buildall.sh. When you are done run the "file" command on all of the libraries in <path-to-install>/lib to see if they have been built 64-bit.
    That error looks like a 32- vs 64-bit issue of some sort.
    Regards,
    George

  • Plugincheck no longer lists all my installed plugins, only shows ones that are updated.

    Plugin check use to list all my plugins, by category. It would show unknown plugins, need to update plugins, and up to date plugins.
    Now, it only lists up to date plugins. It does not list all the others

    But in your System Details I see three plugins installed.
    Maybe you are confusing plugins and addons, to see your plugins go to '''Tools''' >> '''Addons''' >> '''Plugins'''

  • [SOLVED]Different versions of installed and loaded kernel

    After a system upgrade I have issues booting.
    Kernel was updated from 3.8.8-2 to 3.8.10-1.
    systemctl --failed says slim, systemd-modules-load and ufw services failed. I'm able to log in and I can see that loaded kernel is 3.8.8, but pacman says the installed one is 3.8.10.
    Upgrade process didn't generate any error message, pacman.log also shows that image generations were successful and they were created on /boot (separate partition).
    It's a laptop, I have UEFI mode disabled in BIOS. Linux-lts is installed, too, same problem.
    Any idea why is this issue and how can be solved? Thanks. I didn't find a solution among the topics, however I saw similar issues.
    PS: systemctl's output doesn't break long lines, just shortens them. Any way to make them readable?
    Edit:
    ls-l /boot shows that the files are old, so they were not updated during the system update.
    Last edited by siriusb (2013-04-30 14:52:33)

    Exactly.
    I have files in /lib/modules/3.8.10-1-ARCH
    I mounted my root partition from liveCD and /boot is empty.
    It's LUKS encryptied partition in case it counts.
    ====================================
    Update:
    First I downgraded to 3.8.8 and I was able to boot with it. Then I had to remove manually some files. Seemed that virtualbox-host-modules was corrupted, no package owned the files in /lib/modules/extramodules-3.8. After I reinstalled it and removed netcfg as well (using networkmanager for the laptop anyway) I managed to update kernel, mkinitcpio run successfully and created the images.
    I still don't understand why the image files weren't updated or why there wasn't any error message...
    Last edited by siriusb (2013-04-30 14:54:09)

  • [SOLVED]yaourt wants to build dependencies from AUR

    Hi,
    I've installed kdemod4... the only problem is that yaourt wants ti install all the dependences of the package(s) i've choose from aur, altough dependencies are present in extra (correct version). How can i solve this??
    An example is:
    cairo-lcd: i have to build all the dependencies from aur, like libpng,etc; but i see from PKGBUILD that the version that needs cairo-lcd is present in extra repository...
    thanks in advance
    Last edited by chesterfork (2009-07-13 10:07:26)

    ..i'm running kdemod 4 x86_64...so if i try install everything using yaourt the dependencies are shown in this way:
    ==> lib32-cairo-lcd dependencies:
    - lib32-gcc-libs (building from AUR)
    - lib32-libpng (building from AUR)
    - lib32-libxrender (building from AUR)
    - lib32-fontconfig (building from AUR)
    - lib32-pixman (building from AUR)
    - lib32-xcb-util (building from AUR)
    if it could help i found this:
    chesterfork ~ $ yaourt -S lib32-cairo
    lib32-cairo not found on AUR
    Packages that were installed as dependencies but are no longer required by any installed package:
    error:
    what about the error? it's a blank line.... i checked yaourtrc in /etc but it seems ok..
    It's happen even if i have these packages installed (and checking in pkg build they have are the same version). EVERYTIME yaourt shows that; cairo, cairo-lcd, bin32-skype-lib32-cairo-lcd....eveything i tried it needs dependencies from aur ONLY. That's the problem....there is a solution??

  • Help! Packages did not install, and bootloader is nonexistant.

    Right now, I just installed archlinux through my usb stick and used the netinstall x86_64, because I use a 64 bit processor. Anyways these packages could not download for some reason:
    cloog
    mpfr
    ppl
    autoconf
    automake
    wget
    which
    m4
    bin86
    bison
    wpa_supplicant
    gcc and
    isdn4k
    Also I couldn't get the bootloader installed. Now, most things are working so, I just need to get a bootloader installed and get those packages. Here's the main issue:
    I need wpa_supplicant to connect to my network.
    Can anyone help me here? I would appreciate it.
    I have a previous installation of arch on another computer, so tech & linux terms shouldn't confuse me.

    kowalski wrote:
    Hi,
    I do not totally get your problem. Is this just a matter of installing wpa_supplicant? Then you should download the package on the other machine that does work.
    pacman -Sw wpa_supplicant
    Afterwards you can copy it to the new machine and install the package file using
    pacman -U /path/to/file.pkg.tar.gz
    . I figure you are able to set up wpa_supplicant since you used netinstall.
    Am I entirely off?!
    During the install I used wpa_supplicant, but it didn't install to the system.

  • Which Supporting Components do I need if I only want to Install and run Photoshop from CS4?

    Does anyone know which "Supporting Components" are necessary for me to run Photoshop?  I want to do a custom install and ONLY install Photoshop from my CS4 install disk.  I only want to install what I need and nothing more. It gives me the option to install the following Supporting Components:
    Adobe After Effects CS4 Presets
    Adobe CMaps CS4
    Adobe CSI CS4
    Adobe Color - Photoshop Specific CS4
    Adobe Color EU Extra Settings CS4
    Adobe Color JA Extra Settings CS4
    Adobe Color NA Recommended Settings CS4
    Adobe Color Video Profiles AE CS4
    Adobe Color Video Profiles CS CS4
    Adobe Default Language CS4
    Adobe Dynamiclink Support
    Adobe ExtendScript Toolkit CS4
    Adobe Fonts All
    Adobe Linguistics CS4
    Adobe MotionPicture Color Files CS4
    Adobe Output Module
    Adobe PDF Library Files CS4
    Adobe Photoshop CS4 Support
    Adobe Search for Help
    Adobe Service Manager Extension
    Adobe Type Support CS4
    Adobe Update Manager CS4
    Adobe Utilities CS4
    Adobe WinSoft Linguistics Plugin
    Adobe XMP Panels CS4
    AdobeColorCommonSetCMYK
    AdobeColorCommonSetRGB
    Connect
    PDF Settings CS4
    Photoshop Camera Raw
    Kuler

    When I want to do a custom install, it gives me the option to install these Supporting Components:
    Adobe After Effects CS4 Presets
    adobe CMaps CS4
    Adobe CSI CS4
    Adobe Color - Photoshop Specific CS4
    Adobe Color EU Extra Settings CS4
    Adobe Color JA Extra Settings CS4
    Adobe Color NA Recommended Settings CS4
    Adobe Color Video Profiles AE CS4
    Adobe Color Video Profiles CS CS4
    Adobe Default Language CS4
    Adobe Dynamiclink Support
    Adobe ExtendScript Toolkit CS4\
    Adobe Fonts All
    Adobe Linguistics CS4
    Adobe MotionPicture Color Files CS4
    Adobe Output Module
    Adobe PDF Library Files CS4
    Adobe Photoshop CS4 Support
    Adobe Search for Help
    Adobe Service Manager Extension
    Adobe Type Support CS4
    Adobe Update Manager CS4
    Adobe Utilities CS4
    Adobe WinSoft Linguistics Plugin
    Adobe XMP Panels CS4
    AdobeColorCommonSetCMYK
    AdobeColorCommonSetRGB
    Connect
    PDF Settings CS4
    Photoshop Camera Raw
    kuler

  • Installing and activating Creative Suite 6 Design Standard on two computers?

    Hello!
    I purchased Creative Suite 6: Design Standard as a physical copy (with a CD) about a couple of years ago. I've installed it on my iMac, but now that I purchased a Mac Book Pro, I'd also like to install the package on the laptop. My new Mac Book Pro 13" with Retina display does not have a CD/DVD drive.
    First of all, is it possible to have an Adobe package installed and activated on two computers simultaneously?
    I tried to download the Creative Suite 6 from the Downloads on Adobe website and activate it on my laptop with the serial number that I received when I purchased the product, but the serial number did NOT work. It says "The serial number you entered is invalid." Does this problem occur because the serial number is in use on the Creative Suite, which is installed and activated on my iMac?
    Is there another way to download + install + activate the package on my laptop? Obviously without a CD/DVD drive I cannot use the physical installation CD that I purchased.
    Thanks for help in advance, I really appreciate it!
    – Miina

    Hello!
    Thanks for the reply. I've been looking into this problem more but haven't been successful in solving it. Getting a bit frustrated with this!
    The serial number seems to be the issue.. I don't know why it won't go through. Do I need a different serial number to activate a Creative Suite 6 Design Standard downloaded from the Adobe website? I used the same serial number that can be found on the back of the product box that I purchased a couple of years ago. So far I have installed and activated my product only with my iMac, and now attempting to activate it with my Mac Book Pro, so the problem is not that it's been activated too many times.
    When I finally do manage to activate this software also on my laptop, do I have to deactivate and activate it every time I wish to switch from one computer to the other? Is there a limit to how many times it can be activated/deactivated?
    Thanks again for your help!
    P.s. I also consulted this person https://forums.adobe.com/people/Nikhil%20Bisne (not sure if he is around, though) on my issue, because he was able to help somebody with a similar issue here: Re: Invalid Serial Number . The difference being that this person was activating their software for the first time, I'm trying to activate it a second time on a different machine (while still keeping the software activated on the first machine).

  • Automatically upgrade a package installed after the bundle is assigned

    Hi All,
    I am trying out ZLM 7.3 and thanks also the helpful posts here I feel
    quite confident with the tool.
    Mirrored the channel, assigned the bundle and the catalog for the oss
    packages and done, the installed package are upgraded with the patches
    available with the bundle.
    What I did not understand is the way to automatically upgrade a oss
    package which is installed by YaST after the bundle is assigned. My
    guess is, assign the catalog with patches to the device and whenever I
    try to install a new package I automatically install the newest one. Is
    this correct? Is there any other way to do this?
    Thanks,
    Jan

    On 11/16/2009 09:36 PM, brunold wrote:
    >
    >> I see the new package installed and marked with status "v" which
    >> according with the man pages means the bundle is installed but is of a
    >> different version compared to the one displayed in the list. Now, I
    >> would aspect it is automatically updated, instead it is not.
    >
    > I does not update the package installed by yast immediately after
    > installing it. It should recognize that there is a updated version
    > available the next time the zlm client refreshes.
    >
    You are right, after refreshing the client with rug the new package is
    installed.
    Thanks,
    Jan
    >> As said above, rug would solve the problem but I would like to use a
    >> different approach if it is possible.
    >
    > Thinking about this situation might bring up a few other ideas but I
    > have not checked if they work. When you mirror updates to your local zlm
    > server, on the zlm server there is in the package repository a folder
    > created for each bundle. If you mirror the updates for each different
    > architecture into a different local bundle and therefor a different
    > folder, you might be able to export that directory via nfs and mount it
    > on the system and then add it as a local directory in the installation
    > sources. The problem here is that yast might not be able to identify the
    > packages in a local folder if they are for this architecture or not.
    > Therefor you should create different bundles for different architectures
    > and use them.
    >
    > Another option might be to copy the bundles from that zlm mirror to a
    > different folder and create a installation source like the installation
    > dvd is. We did that when we updated our remote oes 1 sp2 systems to oes
    > 2 sp1 because we wanted to update them to a specific level we have a t
    > the zlm server but we do not want to distribute it after the update
    > accross the wire. We wanted to distribute it before we run the update
    > and then run the update from a local source. That takes some time till
    > you have the process to create such a installation source. therefor I
    > don't know if that is of interest for you. You can script it of course
    > ..
    >
    > Rainer
    >
    >

  • [SOLVED]PKGBUILD change to install to /usr/bin

    I have this package installed and it needs to be changed to install to /usr/bin, now it installs to usr/sbin. I really dont know much about this so if someone could point out what i need to change i would appreciate it.
    https://aur.archlinux.org/packages/?O=0 … fsarchiver
    # qt4-fsarchiver by Francois Dupoux, Hihin Ruslan and Dieter Baum
    # PKGBUILD by hasufell, updated by DaarkWel
    pkgname=qt4-fsarchiver
    pkgver=0.6.17_3
    pkgrel=1
    pkgdesc='GUI for fsarchiver'
    arch=('i686' 'x86_64')
    url='http://sourceforge.net/projects/qt4-fsarchiver/'
    license=('GPL')
    depends=('fsarchiver' 'gksu')
    makedepends=('qt4')
    source=("http://sourceforge.net/projects/${pkgname}/files/source/${pkgname}-${pkgver//_/-}.tar.gz")
    sha1sums=('8b474af6fd81d604f357348567608f450dbe83e7')
    build() {
    cd "${srcdir}/${pkgname}"
    qmake-qt4
    package() {
    cd "${srcdir}/${pkgname}"
    make
    make INSTALL_ROOT="${pkgdir}" install
    mkdir -p ${pkgdir}/usr/share/qt/translations
    rm -R ${pkgdir}/usr/share/qt4
    install -D -m644 ${srcdir}/${pkgname}/translations/*.qm ${pkgdir}/usr/share/qt/translations
    sed s/Terminal=true/Terminal=false/ -i ${pkgdir}/usr/share/applications/qt4-fsarchiver.desktop
    sed s/sudo/gksu/ -i ${pkgdir}/usr/share/applications/qt4-fsarchiver.desktop
    Last edited by cecar (2013-06-04 13:22:28)

    There is a problem in that PKGBUILD. The make shouldn't be in the package function. It should be in the build function, just after qmake-qt4.
    And the qmake project hard codes the destination to /usr/sbin. In that case, the correct PKGBUILD should be:
    # qt4-fsarchiver by Francois Dupoux, Hihin Ruslan and Dieter Baum
    # PKGBUILD by hasufell, updated by DaarkWel
    pkgname=qt4-fsarchiver
    pkgver=0.6.17_3
    pkgrel=1
    pkgdesc='GUI for fsarchiver'
    arch=('i686' 'x86_64')
    url='http://sourceforge.net/projects/qt4-fsarchiver/'
    license=('GPL')
    depends=('fsarchiver' 'gksu')
    makedepends=('qt4')
    source=("http://sourceforge.net/projects/${pkgname}/files/source/${pkgname}-${pkgver//_/-}.tar.gz")
    sha1sums=('8b474af6fd81d604f357348567608f450dbe83e7')
    build() {
    cd "${srcdir}/${pkgname}"
    qmake-qt4
    make
    package() {
    cd "${srcdir}/${pkgname}"
    make INSTALL_ROOT="${pkgdir}" install
    mkdir -p ${pkgdir}/usr/share/qt/translations
    rm -R ${pkgdir}/usr/share/qt4
    install -D -m644 ${srcdir}/${pkgname}/translations/*.qm ${pkgdir}/usr/share/qt/translations
    # workaround for fixed destination path in qmake project
    mkdir -p ${pkgdir}/usr/bin
    mv ${pkgdir}/usr/sbin/qt4-fsarchiver ${pkgdir}/usr/bin/
    rmdir ${pkgdir}/usr/sbin
    sed s/Terminal=true/Terminal=false/ -i ${pkgdir}/usr/share/applications/qt4-fsarchiver.desktop
    sed s/sudo/gksu/ -i ${pkgdir}/usr/share/applications/qt4-fsarchiver.desktop

  • Bought 3.0 Update, went to install and back up appears... it's been hours!

    I bought the 3.0 update last night and once I downloaded it then went to install it says that it is backing up my ipod touch. my itouch ended up getting disconnected so i tried again at noon today. my itouch isn't even half way at backing up and it is already 8:45pm. is there a way that i can just get the 3.0 software update without having to sit through the backing up? i feel as though it will never be done. i could really care less about having any of the stuff saved from the back up.

    First off, why are you posting this question in the Mac forum? You only needed to post it once as more frequently will not help to get it answered any faster. Someone will help you when they think they have something to offer.
    Are you by chance running any of the commercial internet protection suites like Norton or Mcafee? Disable you firewall and anti-virus for the upgrade. During the upgrade process, your computer needs to access the Apple servers to complete the install and your security package is no friend at this point.
    Even if you are running ZoneAlarm, you might wish to disable it.

  • TS1277 My computer has had new windows installed and now when I plug in my phone is does not recognize the device

    My Computer has just had a new windows package installed and now my "Device is not recognized" when I plug it in?

    Microsoft Office is a program you would need to reinstall again.
    As for data backup if you baid 200.00 for a cruddy job for just picture backups and a reinstallation of Windows, thats pretty bad.
    I would ask the technician where your data is. basically you want to ask if he backed up your User directory

Maybe you are looking for