Slackware This Forum is for the discussion of Slackware Linux.
|
| Notices |
Welcome to LinuxQuestions.org, a friendly and active Linux Community.
You are currently viewing LQ as a guest. By joining our community you will have the ability to post topics, receive our newsletter, use the advanced search, subscribe to threads and access many other special features. Registration is quick, simple and absolutely free. Join our community today!
Note that registered members see fewer ads, and ContentLink is completely disabled once you log in.
Are you new to LinuxQuestions.org? Visit the following links:
Site Howto |
Site FAQ |
Sitemap |
Register Now
If you have any problems with the registration process or your account login, please contact us. If you need to reset your password, click here.
Having a problem logging in? Please visit this page to clear all LQ-related cookies.
 |
GNU/Linux Basic Guide
This 255-page guide will provide you with the keys to understand the philosophy of free software, teach you how to use and handle it, and give you the tools required to move easily in the world of GNU/Linux. Many users and administrators will be taking their first steps with this GNU/Linux Basic guide and it will show you how to approach and solve the problems you encounter.
Click Here to receive this Complete Guide absolutely free. |
|
 |
|
10-08-2009, 01:43 PM
|
#46
|
|
Senior Member
Registered: Mar 2005
Location: Kentucky
Distribution: Slackware64-current
Posts: 1,335
Rep: 
|
Well, I gave it a shot at creating a package. I pointed it to dvdauthor as a test package, and it created the package in root's home. While it did work this time, its not something that gives me any control over where it goes or any extra parameters I may wish to add.
That said, overall it can be a useful app, and I think congratulations are in order for your work on this project.
|
|
|
|
10-11-2009, 04:24 PM
|
#47
|
|
Member
Registered: Sep 2009
Location: Greece
Distribution: Slackware
Posts: 106
Original Poster
Rep:
|
Slackpack 1.1.7 version just released
updates - added package information feature on list pkgs tab
- added save/copy actions
- segmentation fault on remove/upgrade package bug fixed
Slackpack 1.1.7 package (.tgz)
Slackpack 1.1.7 source (.tar.gz)
------------
Slackpack homepage
Thank you all for your feedback 
|
|
|
|
10-22-2009, 11:36 AM
|
#48
|
|
Member
Registered: Oct 2009
Distribution: Slackware
Posts: 132
Rep:
|
How to compile slackpack?
I want compile myself this package.
I decompress sources, then
# qmake Slackpack.pro
# make.
# make install
this last step does not working
In effect Makefile is:
...
####### Install
install: FORCE
uninstall: FORCE
FORCE:
...
without real actions.
How to install it?
Thanx,
Matteo
P.S.: pardon for my bad english
|
|
|
|
10-22-2009, 11:43 AM
|
#49
|
|
Member
Registered: Sep 2009
Location: Greece
Distribution: Slackware
Posts: 106
Original Poster
Rep:
|
after qmake && make the slackpack executable is created at the 'bin' folder.
it does not installs itself into the system, however, you can just copy "Slackpack" executable from the /bin directory of the source into '/usr/bin', and run it from everywhere 
|
|
|
|
10-23-2009, 01:46 AM
|
#50
|
|
Member
Registered: Oct 2009
Distribution: Slackware
Posts: 132
Rep:
|
into slackpack-1.1.7-i686-1.tgz I see many other files as slackpack.desktop, icons and other.
I must to copy all manually? There are not a script (as a SlackBuild or other) to create a slackpack tgz?
I think that may be useful to add an install directive in Makefile, even if I need to copy slackpack executable only
Thx,
Matteo
|
|
|
|
10-23-2009, 01:53 AM
|
#51
|
|
Member
Registered: Sep 2009
Location: Greece
Distribution: Slackware
Posts: 106
Original Poster
Rep:
|
all these files are included and distributed in the .tgz slackpack package,
i just included them in the source, there's no installation script to fully install slackpack with the icons and stuff yet.
if you just want use Slackpack get latest .tgz package from:
http://slackpackpkgman.wordpress.com/download/
however its in my plans to include an installation script along with the source-code package.
|
|
|
|
10-26-2009, 08:06 AM
|
#52
|
|
Member
Registered: Sep 2009
Location: Greece
Distribution: Slackware
Posts: 106
Original Poster
Rep:
|
Slackpack 1.1.8 version released
Updates:
* added preferences dialog (options for create package and convert package features
- now you can use src2pkg to convert packages as well 
* you can now run slackpack as a normal user but root-only features are disabled.
* console output at list packages tab fixes
* code cleaned, removed old unused part of the code plus some unused includes
* added install section on generated Makefile (qmake)
Slackpack 1.1.8 package (.tgz)
Slackpack 1.1.8 source package (.tar.gz)
Slackpack Homepage
P.S:@tuxDev, please contact me to tell me where inside Slackpack to leave some credits for using src2pkg 
|
|
|
|
10-27-2009, 05:43 AM
|
#53
|
|
Member
Registered: Oct 2009
Distribution: Slackware
Posts: 132
Rep:
|
Quote:
Originally Posted by MysticalGroovy
* added install section on generated Makefile (qmake)
|
there is a problem in install script:
Code:
# make install
...
...
strip /usr/bin/deb2tgz
strip:/usr/bin/deb2tgz: File format not recognized
make: [install_scripts] Error 1 (ignored)
make install try to strip deb2tgz that is a bash shell script.
My workaround to solve is to add "QMAKE_STRIP = echo" into Slackpack.pro
Last edited by zerouno; 10-27-2009 at 05:59 AM.
|
|
|
|
10-27-2009, 06:08 AM
|
#54
|
|
Member
Registered: Sep 2009
Location: Greece
Distribution: Slackware
Posts: 106
Original Poster
Rep:
|
arg!!! I hate it when im in hurry to release a new version and ignore errors like that...
anywayz fixed @current. thx zerouno
|
|
|
|
10-27-2009, 08:59 AM
|
#55
|
|
Member
Registered: Oct 2009
Distribution: Slackware
Posts: 132
Rep:
|
Thanx.
then, in version 1.1.8, the tgz have files that are not in source (all files outside /usr/share/slackpack as slackpack.desktop and others).
These file are presents in 1.1.4 source package, so I must to do:
# cd 1.1.4-source
# make install-data prefix=/
# cd 1.1.8-source
# make install
to build a complete 1.1.8 installation.
Goodbye,
01
|
|
|
|
10-27-2009, 10:59 AM
|
#56
|
|
Member
Registered: Sep 2009
Location: Greece
Distribution: Slackware
Posts: 106
Original Poster
Rep:
|
well you actually have a complete 1.1.8 installation without copying any data from previous versions, the only that's missing from the source is the candy part of .desktop files and such which they're not necessary in the source side of things.
|
|
|
|
10-27-2009, 12:12 PM
|
#57
|
|
Member
Registered: Apr 2009
Distribution: Slackware
Posts: 442
Rep:
|
Hi MysticalGroovy, thanks for sharing your tool. Slackpack v1.1.8 compiled without errors and really improved a lot. Any plan to add support for translations? I played a little with 1.1.5 files and it was almost 85% translated =]
|
|
|
|
10-27-2009, 12:53 PM
|
#58
|
|
Member
Registered: Sep 2009
Location: Greece
Distribution: Slackware
Posts: 106
Original Poster
Rep:
|
hmm a translation, not a bad idea,
I remember at ver1.1.5 i was trying to include a greek translation with Slackpack but i didnt give it alot of attention at that time.
the next ver of Slackpack will come with a greek translation and a template for translating slackpack to other languages too 
|
|
|
|
10-28-2009, 09:55 AM
|
#59
|
|
Member
Registered: Sep 2009
Location: Greece
Distribution: Slackware
Posts: 106
Original Poster
Rep:
|
Hey all,
i have a question, recently ive been using Slax as my pocket OS for my usbpen-drive, ive also created a slackpack Slax module..
do you think its a good idea to add slax related features to Slackpack? like slackware linux packages convertion to SLax modules and such.. or to leave Slackpack a slackware-only package manager?
thank you
|
|
|
|
11-02-2009, 02:30 AM
|
#60
|
|
LQ Newbie
Registered: Oct 2009
Location: Earth
Distribution: Slackware 13
Posts: 6
Rep:
|
Hello!
I use an usbpen-drive too. I find it very useful.
I tried Slax and NimbleX. Both use LZM modules.
In my opinion (if the proposal is still valid) I think its a very good idea. Do it! 
Anyway Slackpack it's very helpful for me.
Good luck!
PS: sorry for my bad english... I am a beginner.
Gabriel
|
|
|
|
| Thread Tools |
Search this Thread |
|
|
|
Posting Rules
|
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts
HTML code is Off
|
|
|
All times are GMT -5. The time now is 02:21 PM.
|
|
LinuxQuestions.org is looking for people interested in writing
Editorials, Articles, Reviews, and more. If you'd like to contribute
content, let us know.
|
Latest Threads
LQ News
|
|