Package Details: bootstrap-studio 8.0.1-1

Git Clone URL: https://aur.archlinux.org/bootstrap-studio.git (read-only, click to copy)
Package Base: bootstrap-studio
Description: Bootstrap Studio is a powerful tool which web developers and designers use to create layouts and fully functional websites using the Bootstrap framework.
Upstream URL: https://bootstrapstudio.io/
Keywords: bootstrap-studio
Licenses: custom
Submitter: tata
Maintainer: nathawat_a
Last Packager: nathawat_a
Votes: 14
Popularity: 0.006725
First Submitted: 2018-04-18 13:45 (UTC)
Last Updated: 2026-05-07 06:30 (UTC)

Latest Comments

1 2 3 4 5 Next › Last »

nathawat_a commented on 2026-03-17 04:49 (UTC) (edited on 2026-03-17 04:56 (UTC) by nathawat_a)

The sha256sums in PKGBUILD is correct:

$ curl -L "https://releases.bootstrapstudio.io/8.0.1/Bootstrap%20Studio.AppImage" --output "BootstrapStudio.AppImage"
  % Total    % Received % Xferd  Average Speed   Time    Time     Time  Current
                                 Dload  Upload   Total   Spent    Left  Speed
100  211M  100  211M    0     0  84.6M      0  0:00:02  0:00:02 --:--:-- 84.6M
$ sha256sum "BootstrapStudio.AppImage" 
b95783ea0dc0f484ca901a770314cf50cde7ca109b5bbf603d54d4edb2039a1b  BootstrapStudio.AppImage
$ cat PKGBUILD | grep sha256sums
sha256sums=('b95783ea0dc0f484ca901a770314cf50cde7ca109b5bbf603d54d4edb2039a1b'

==> Validating source files with sha256sums...
    Bootstrap%20Studio.AppImage ... Passed
    bstudio.desktop ... Passed

S-Cesc commented on 2026-03-16 10:37 (UTC)

On March 16, 2026 it seems that check sum for AppImage is wrong; It'd ease to hack, but I don't dare to do that (is the source code the original one?).

==> Es validen source fitxers amb sha256sums...
    Bootstrap%20Studio.AppImage ... HA FALLAT
    bstudio.desktop ... Ha passat

greyhat.phalanx commented on 2025-03-19 16:58 (UTC)

... another chance we could get an update? Currently had four releases since last update and package is marked out of date.

Current version is 7.0.3 released on Jan. 16.

MioKira commented on 2024-08-04 19:24 (UTC)

Updaed to 6.7.0 and soon will update to 6.7.2 since it is giving some erros and requires some editing , Have a good day

greyhat.phalanx commented on 2024-07-30 19:47 (UTC)

Any chance we can get an updated version here or a new maintainer?

rotzelbart commented on 2023-09-05 09:05 (UTC)

Hello and a good day. I have taken maintainership of the package and updated it to the latest version. Enjoy!

streetipr commented on 2023-01-27 20:36 (UTC) (edited on 2023-01-27 20:39 (UTC) by streetipr)

@TechVio latest app version is 6.3.1

also the source url of AppImage has changed, new URL:

https://releases.bootstrapstudio.io/${pkgver}/Bootstrap%20Studio.AppImage

sha256sum of AppImage version 6.3.1:

09b0b210300037a7d12ae7888e33bdaa289b1cfbbb24103ae36487dfed98fa9b

TechVio commented on 2022-01-23 11:20 (UTC)

@chn The app is outdated, this is an updated version of PKGBUILD:

# Maintainer: chn <g897331845@gmail.com>
# Contributor: Hunter Wittenborn <git@hunterwittenborn.me>
# Contributor: Alfin Bakhtiar Ilhami <alfin at nuclea dot id>
# Contributor: Jan-Tarek Butt <tarek at ring0 dot de>

pkgname=bootstrap-studio
pkgver=5.9.1
pkgrel=1
pkgdesc="Bootstrap Studio is a powerful tool which web developers and designers use to create layouts and fully functional websites using the Bootstrap framework."
arch=("x86_64")
license=("custom")
url="https://bootstrapstudio.io/"

source=("https://bootstrapstudio.io/releases/desktop/${pkgver}/Bootstrap%20Studio.AppImage"
                "bstudio.desktop")
sha256sums=('cd2a3aab2bcd2e459bf1f2a9ed77451c7062604f22055caf2da83221d7fe3a16'
            'e1c1b0d4b24658fc0ead611cb002dcde431e30256cb8fd0dffb3cfc76f24db84')
prepare() {
    # Extract AppImage
    echo "Extracting AppImage..."
    mv "Bootstrap%20Studio.AppImage" "Bootstrap Studio.AppImage"
    chmod +x "Bootstrap Studio.AppImage"
    ./"Bootstrap Studio.AppImage" --appimage-extract &> /dev/null
}

package() {
    # Copy package files
        echo "Copying package files..."
    mkdir -p "${pkgdir}/opt/bootstrap-studio"
    cp -Lr "${srcdir}/squashfs-root" "${pkgdir}/opt/bootstrap-studio"
    # Set perms
        chmod a+rx "${pkgdir}/opt/bootstrap-studio/" -R

    # Add package to /usr/bin/
    mkdir -p "${pkgdir}/usr/bin"
        printf '#!/bin/bash\n\n/opt/bootstrap-studio/squashfs-root/AppRun' | tee "${pkgdir}/usr/bin/bootstrap-studio" &> /dev/null
        chmod +x "${pkgdir}/usr/bin/bootstrap-studio"

    # Copy .desktop file
    mkdir -p "${pkgdir}/usr/share/applications"
    cp -Lr "${srcdir}/bstudio.desktop" "${pkgdir}/usr/share/applications/"

    # Copy icons
    mkdir -p "${pkgdir}/usr/share/icons/hicolor/"{128x128,192x192,256x256,512x512}"/apps/"
    for i in 128x128 192x192 256x256 512x512; do
        cp -Lr "${srcdir}/squashfs-root/usr/share/icons/hicolor/0x0/apps/bstudio.png" "${pkgdir}/usr/share/icons/hicolor/${i}/apps/"
    done
}