Package Details: imdbmoviefetcher 4.2-1

Package Base: imdbmoviefetcher
Description: command line tool to search and get information about movies
Upstream URL: http://prj.mutexes.org/projects/imdbmoviefetcher
Category: multimedia
Licenses: GPL
Submitter: None
Maintainer: None
Last Packager: None
Votes: 12
First Submitted: 2011-03-05 13:41
Last Updated: 2012-12-19 22:15

Latest Comments

Comment by MreDD

2013-04-23 13:08

pkgbuild and post.install using your git
https://gist.github.com/MikereDD/5443412

Comment by MreDD

2013-04-23 12:02

@webofunni
@marxav
works no matter the users path if you just use `which binary`

like so:
declare -rx LYNX=`which lynx`
declare -rx CAT=`which cat`
declare -rx SED=`which sed`
declare -rx EGREP=`which egrep`
declare -rx GREP=`which grep`
declare -rx UNIQ=`which uniq`
declare -rx HEAD=`which head`
declare -rx SORT=`which sort`

this is the first I changed.
webofunni does share the source on github(many thanks)
you can always fork and do what you like.
https://github.com/webofunni/imdb-movie-fetcher

I also think you should just have the pkgbuild build from your git repo.

Anonymous comment

2012-03-26 01:08

declare -rx EGREP="/usr/bin/egrep"
declare -rx GREP="/usr/bin/grep"

Anonymous comment

2011-03-07 17:54

Of course it's always good to have an actual release number of one's application, which should change after an upgrade. So updating to 3.1 is perfectly fine.

Anonymous comment

2011-03-07 16:58

updated to version 3.1

Anonymous comment

2011-03-06 11:41

army,

Thanks for that. But I just changed the PKGBUILD not the application, Do I need to change the package release for updating the PKGBUILD also ?

Anonymous comment

2011-03-06 11:20

Please always change the pkgrel value with updates. Your previous version was pkgrel=1, now after the update it should be pkgrel=2 so everyone gets the update

Anonymous comment

2011-03-06 08:42

Thanks Army,

I uploaded the new PKGBUILD :-)

Anonymous comment

2011-03-05 22:41

Ok sorry, Indeed there's something wrong with the link. Here's a new one http://pastebin.com/90yiDy5f

Anonymous comment

2011-03-05 22:14

hey army,

that pastebin link is not working. Can you please send that to my mail id @ https://wiki.archlinux.org/index.php/User:Unnikrishnan . I am new to this, I can for sure figure it out. But it will be helpful for me, if I am getting a sample one. Happy to know that u liked it :-)

Anonymous comment

2011-03-05 21:30

Hi, there are some not so nice things in your PKGBUILD
1. With sourceforge, please use http://download.sourceforge.net/*** That way the source is automatically downloaded from the ideal server for the individual user.
2. In your build function the usage of install rather than cp is preferable.
3. The package depends on lynx

I did the changes for you, take a look
http://pastebin.com/5LHuDzR9

Nice script btw :) Thanks for sharing!