[ Thread Index |
Date Index
| More lists.tuxfamily.org/slitaz Archives
]
- To: slitaz@xxxxxxxxxxxxxxxxxxx
- Subject: Re: receipt for chmlib
- From: "Allan Pinto" <allan316@xxxxxxxxx>
- Date: Mon, 25 Aug 2008 13:04:04 +0000
- Dkim-signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:received:received:message-id:date:from:to :subject:in-reply-to:mime-version:content-type :content-transfer-encoding:content-disposition:references; bh=LuXx2jGjMbp6FXogwBg0bJoUnquH3dqso66tLYOgdXE=; b=dn1I7T2ddJeC0yWJmtZjlmlvg+2RMAv7c16teMtuJtbr466xbQMKcSXDtq6r5nVNXo m/4asBSei6HmQzinDG7PoX9JZzA8WUZNk6vgYIc7vG5N0B9rJHpp68BztUBMU1jht3Bq cC5T2O/E4/XC0LVONVrLECbaSK35YsobQU7hc=
- Domainkey-signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=message-id:date:from:to:subject:in-reply-to:mime-version :content-type:content-transfer-encoding:content-disposition :references; b=LJfIJfZ/m2FOjEg5ZMo4dbRsCHxW7b5YVxHOxxXZy7uw08wRZ1KbdHWn51Na9cCheg E+BNAG5qgt3nAfFqB7Ln83MhFzftAsWl33UC6AdFo3Pb4IKB4H480Bc3vyfFsMeX0f4q iTWC6S2DrGYwll0tLDB5t3mK5WOxv5DrdDy3w=
thank you ,
Just wanted to ask one more thing, this making of packages is pretty
much exciting to me, i have never done anything like it before and
with slitaz it became understandable and easy ( Comparatively) . but i
hope its ok that i keep on putting up receipts for the same (whichever
programs i am able to package) here on the mailing list. i do
understand that you guys must be very busy to keep checking receipts
all the time, if so please let me know,
cheers.
On Mon, Aug 25, 2008 at 12:41 PM, Eric Joseph-Alexandre <erjo@xxxxxxxxxx> wrote:
> Le Mon, 25 Aug 2008 10:13:55 +0000,
> "Allan Pinto" <allan316@xxxxxxxxx> a écrit :
>
>> hi Eric
>> so the new receipt should be like this, right ?
> Yes.
>
> And here is the -dev receipt.
> Note: WGET_URL and compiled_rules() are removed.
>
> The build is made via the WANTED variable.
>
>
>
> # SliTaz package receipt.
>
> PACKAGE="chmlib-dev"
> VERSION="0.39"
> CATEGORY="development"
> SHORT_DESC="library for dealing with CHM format"
> MAINTAINER="allan316@xxxxxxxxx"
> DEPENDS="chmlib"
> TARBALL="$PACKAGE-$VERSION.tar.gz"
> WEB_SITE="http://www.jedrea.com/chmlib"
> WANTED="chmlib"
>
>
> # Rules to gen a SliTaz package suitable for Tazpkg.
> genpkg_rules()
> {
> mkdir -p $fs/usr/lib
> cp -a $_pkg/usr/lib/*.*a $fs/usr/lib/
> cp -a $_pkg/usr/include $fs/usr
> }
>
>>
>> # SliTaz package receipt.
>>
>> PACKAGE="chmlib"
>> VERSION="0.39"
>> CATEGORY="misc"
>> SHORT_DESC="library for dealing with CHM format"
>> MAINTAINER="allan316@xxxxxxxxx"
>> DEPENDS=""
>> TARBALL="$PACKAGE-$VERSION.tar.gz"
>> WEB_SITE="http://www.jedrea.com/chmlib"
>> WGET_URL="http://www.jedrea.com/chmlib/$TARBALL"
>>
>> # Rules to configure and make the package.
>> compile_rules()
>> {
>> cd $src
>> ./configure --prefix=/usr --infodir=/usr/share/info \
>> --mandir=/usr/share/man $CONFIGURE_ARGS
>> make
>> make DESTDIR=$PWD/_pkg install
>> }
>>
>> # Rules to gen a SliTaz package suitable for Tazpkg.
>> genpkg_rules()
>> {
>> mkdir -p $fs/usr/lib
>> cp -a $_pkg/usr/lib/*.so* $fs/usr/lib/
>> }
>>
>>
>> On Mon, Aug 25, 2008 at 9:37 AM, Allan Pinto <allan316@xxxxxxxxx>
>> wrote:
>> > ok , i got it, sorry for being so slow, ill send the new receipts
>> > in some time.
>> >
>> > On Mon, Aug 25, 2008 at 9:32 AM, Allan Pinto <allan316@xxxxxxxxx>
>> > wrote:
>> >> ooh ok, im pretty new at this, do you have any examples anywhere,
>> >> which i could see and replicate.
>> >>
>> >> On Mon, Aug 25, 2008 at 7:34 AM, Eric Joseph-Alexandre
>> >> <erjo@xxxxxxxxxx> wrote:
>> >>> Le Mon, 25 Aug 2008 06:25:54 +0000,
>> >>> "Allan Pinto" <allan316@xxxxxxxxx> a écrit :
>> >>>
>> >>>> Hi,
>> >>> Hi.
>> >>>
>> >>> It works.
>> >>> But... We love to have dev files in a separate package.
>> >>> chmlib : with /usr/lib/*.so*
>> >>> chlib-dev : with /usr/lib/*.a;/usr/include
>> >>>
>> >>> It would be nice. :)
>> >>>
>> >>> +Eric.
>> >>>
>> >>>> below is the receipt for chmlib, can anyone check if its ok.
>> >>>>
>> >>>> # SliTaz package receipt.
>> >>>>
>> >>>> PACKAGE="chmlib"
>> >>>> VERSION="0.39"
>> >>>> CATEGORY="misc"
>> >>>> SHORT_DESC="library for dealing with CHM format"
>> >>>> MAINTAINER="allan316@xxxxxxxxx"
>> >>>> DEPENDS=""
>> >>>> TARBALL="$PACKAGE-$VERSION.tar.gz"
>> >>>> WEB_SITE="http://www.jedrea.com/chmlib"
>> >>>> WGET_URL="http://www.jedrea.com/chmlib/$TARBALL"
>> >>>>
>> >>>> # Rules to configure and make the package.
>> >>>> compile_rules()
>> >>>> {
>> >>>> cd $src
>> >>>> ./configure --prefix=/usr --infodir=/usr/share/info \
>> >>>> --mandir=/usr/share/man $CONFIGURE_ARGS
>> >>>> make
>> >>>> make DESTDIR=$PWD/_pkg install
>> >>>> }
>> >>>>
>> >>>> # Rules to gen a SliTaz package suitable for Tazpkg.
>> >>>> genpkg_rules()
>> >>>> {
>> >>>> mkdir -p $fs/usr
>> >>>> cp -a $_pkg/usr/* $fs/usr
>> >>>> }
>> >>>>
>> >>>>
>> >>>
>> >>> ---
>> >>> SliTaz GNU/Linux Mailing list - http://www.slitaz.org/
>> >>>
>> >>
>> >>
>> >>
>> >> --
>> >> Thanx and regd's.
>> >>
>> >> Allan.
>> >> http://www.in2dwok.com
>> >>
>> >
>> >
>> >
>> > --
>> > Thanx and regd's.
>> >
>> > Allan.
>> > http://www.in2dwok.com
>> >
>>
>>
>>
>
> ---
> SliTaz GNU/Linux Mailing list - http://www.slitaz.org/
>
--
Thanx and regd's.
Allan.
http://www.in2dwok.com
---
SliTaz GNU/Linux Mailing list - http://www.slitaz.org/